-1

私は自分のウェブサイトでこれを実行しています:

$PlaceOrder = " Insert INTO Order VALUES ( '$CustomerID' , '$ItemID' , '$Quantity' , '$Date' ) ";   
    $result = mysql_query ($PlaceOrder);
    if (!$result)
    {
        die('Invalid query: ' . mysql_error());
    }

しかし、いつでも次のエラーメッセージが表示されます。

Invalid query: 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 VALUES ( '3' , '1' , '12' , '11/05/2013' )' at line 1

今何をすべきか本当にわかりません。列を指定しようとしましたが、それもうまくいきませんでした。私はこの全体に非常に慣れておらず、マニュアルの内容に基づいてこれを実行しています。

4

4 に答える 4