PHP写入MySQL时候语法总是错误

使用PHP往数据库写东西,总是报错,错误如下:MySQLerror:YouhaveanerrorinyourSQLsyntax;checkthemanualthatcor... 使用PHP往数据库写东西,总是报错,错误如下:
MySQL error: 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 '17-31-27)' at line 2

PHP代码如下:
$sql = "INSERT INTO users (userId, password, gender, regDate) VALUES
($userId, $pass_md5, $gender, $date)";

但是如果排除变量,硬写入数据,就没问题,PHP代码如下:
$sql = "INSERT INTO users (userId, password, gender, regDate) VALUES
('test1', '202cb962ac59075b964b07152d234b70', 'male', '2012-04-24 17-23-03')";
请问是为什么?

补充:我在用变量写入数据库之前,已经用echo把每个变量的值都显示了一遍,都不是空,把这些值直接放在SQL语句里就能写到数据库,很奇怪。
展开
 我来答
a7442358
2012-04-24 · TA获得超过561个赞
知道小有建树答主
回答量:779
采纳率:0%
帮助的人:825万
展开全部
因为你的变量没加单引号,正确的写法是$sql = "INSERT INTO users (userId, password, gender, regDate) VALUES
(‘$userId’, '$pass_md5’, '$gender’, '$date’)";
tianyu
2012-04-24 · 超过62用户采纳过TA的回答
知道小有建树答主
回答量:236
采纳率:62%
帮助的人:68.2万
展开全部
因为你的变量没加单引号,正确的写法是$sql = "INSERT INTO users (userId, password, gender, regDate) VALUES
('".$userId."', '".$pass_md5."', '".$gender."', '".$date."')";
要写严格点
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
恩恩念
2012-04-24 · 超过22用户采纳过TA的回答
知道答主
回答量:159
采纳率:0%
帮助的人:74.9万
展开全部
因为你的变量没加单引号,正确的写法应该是$sql = "INSERT INTO users (userId, password, gender, regDate) VALUES (‘$userId’, '$pass_md5’, '$gender’, '$date’)"; 这样就OK了
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式