php 数据库 mysql
include("connection.php");
if(isset($_POST["sub"])){
$title=$_POST['title'];
$con=$_POST['con'];
$sql="insert into `news` (`id`,`title`,`dates`,`contents`) values(null,'$title',now(),'$con')";
mysql_query($sql);
echo "插入成功"; //提交后没有将数据输入到数据库中
}else{
echo "插入失败".mysql_error();
}
?>
回复讨论(解决方案)
mysql_query($sql) or die(mysql_error()); //这样是否有报错
报错了 我知道了 是因为id不能为null但是我的phpmyadmin中没有自动递增这一项怎么办呢
mysql_query($sql) or die(mysql_error()); //这样是否有报错
可以了 但是那个没有递增项的问题怎么解决呢
id为主键,插入数据自动递增的呀..
auto_increment属性
谢谢各位了 找到了 新版的phpmyadmin是A_I 问题已经解决了
Statement:The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn