我在我的网站上运行这个:
$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
我真的不知道现在该做什么,我尝试指定列,但这也不起作用。我对这一切都很陌生,我正在根据手册中的内容执行此操作。