当前位置:首页 > Mysql教程 > 列表

php insert id错误解决办法

发布:smiling 来源: PHP粉丝网  添加日期:2014-10-17 13:50:46 浏览: 评论:0 

本人在开发中碰到的问题就是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); --phpfensi.com 

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

Tags: insert id错误

分享到: