php没有办法将数据提交到数据库
<?php
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();
}
?>
<form action="add.php" method="post">
标题<input type="text" name="title"><br>
内容<textarea rows="5" cols="50" name="con"></textarea><br>
<input type="submit" name="sub" value="发表"/>
</form>
------解决方案--------------------mysql_query($sql) or die(mysql_error()); //这样是否有报错
------解决方案--------------------------解决方案--------------------id为主键,插入数据自动递增的呀..
------解决方案--------------------auto_increment属性