首页 > 数据库 > MySQL > 正文

php insert id错误解决办法

2024-07-24 12:39:21
字体:
来源:转载
供稿:网友

本人在开发中碰到的问题就是php insert 到数据库时insert不成功也不报任何错误,真是崩溃.

原始代码,代码如下:

  1. $sql="INSERT INTO `message` (`id`, `user`, `title`, `content`, `lastdate`) VALUES ('', '$_POST[user]', '$_POST[title]', '$_POST[content]', 'now()')"
  2. mysql_query($sql); 

修改后代码,代码如下:

  1. $sql="INSERT INTO `message` (`user`, `title`, `content`, `lastdate`) VALUES ( '$_POST[user]', '$_POST[title]', '$_POST[content]', 'now()')"
  2. mysql_query($sql); --Vevb.com 

去掉id,因为id是自动插入,所以去掉,这样就OK了,如果字段是tinyint,int,...类型的要么自动插入,要么给默认值,不要`id` values('')这样的空值,因为每个mysql版本不一样,会出现问题而找不出原因.

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表