我正在玩弄一种博客。我收到一个错误,当我说:
我的PHP如下:
$query = "INSERT INTO articles (articleTitle, articleType, articleText, userID)
VALUES('$articleTitle', '$articleType', '$articleText', '$userID')";
$result = mysql_query($query);
var_dump($articleTitle);
var_dump($articleType);
var_dump($articleText);
var_dump($userID);
var_dump($result);
echo mysql_error();
我的结果是这样的:
string 'New News! (Sounds like noo noo's)' (length=33)
string 'News' (length=4)
string 'NEWS is here! This is Michael Bender reporting on the new news that we now have news! Isn't that exciting news?' (length=111)
string '1' (length=1)
boolean false
您的 SQL 语法有错误;查看与您的 MySQL 服务器版本相对应的手册,了解在 's)'、'News'、'NEWS is here 附近使用的正确语法!这是迈克尔·本德(Michael Bender)在第 2 行报道新新闻
那么为什么mysql不接受我的查询呢?谢谢!