私はOpenCart 1.4.9でのクーポンについての報告をしなければならない数行のコードを持っていますが、私はこのエラーを乗り越えることはできません。奇妙なエラー
You have an error in your SQL syntax; check the manual that corresponds
to your MySQL server version for the right syntax to use near
'order where coupon_id = 16' at line 1.
$getcouponinfo1 = mysql_query("select * from order where coupon_id = $coupon_id")
or die(mysql_error());
残りのコードはhereです。
このリンクを見てください。 SQLにはいくつかの予約語があります。 http://dev.mysql.com/doc/refman/5.0/en/reserved-words.htmlので、@ Matの回答に従う必要があります –