使用PHP将数据插入MySQL数据库时出错

时间:2013-02-01 10:07:46

标签: php mysql

我收到以下错误

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 '16:45:40, 2012-12-18 16:45:40, Renovated Stone house in Perast, first line, 2012' at line 1

这是问题所在的SQL查询

$sql =  "INSERT INTO `wp_posts` (`post_author`, `post_date`, `post_date_gmt`, `post_title`, `post_modified`, `post_modified_gmt`, `xml_id`)";
$sql .= " VALUES ({$postAuthor}, {$postDate}, {$postDate}, {$title}, {$postModified}, {$postModified}, {$xmlId});";

3 个答案:

答案 0 :(得分:3)

值必须用引号括起来,你必须确保值中没有引号。

执行此操作的最佳方法是使用预准备语句,例如:使用PHP Data Objects

答案 1 :(得分:3)

这一行:

$sql .= " VALUES ({$postAuthor}, {$postDate}, {$postDate}, {$title}, {$postModified}, {$postModified}, {$xmlId});";

应该是:

$sql .= " VALUES ('$postAuthor', '$postDate', '$postDate', '$title', '$postModified', '$postModified', '$xmlId')";

删除包裹的'',其中列类型不是varchar。

此外,您必须验证您是否正在转义变量中的特殊字符。 mysql_real_escape_string

答案 2 :(得分:1)

应该有效

$sql =  "INSERT INTO `wp_posts` (`post_author`, `post_date`, `post_date_gmt`, `post_title`, `post_modified`, `post_modified_gmt`, `xml_id`)";
$sql .= " VALUES ('$postAuthor', '$postDate', '$postDate', '$title', '$postModified', '$postModified', '$xmlId')";