<?php
include ("conn.php");
$id=$_POST['id'];
$user=$_POST['user'];
$title=$_POST[ 'title'];
$content=$_POST['content'];
if($_POST['submit']){
$sql="insert into message(id,user,title,content,lastdate )VALUES('','$user','$title','$content',now())";
mysql_query($sql);
echo "<seript>alert('提交成功') ;location.href='add.html';</seript>";
}
?>
其他的我不好奇,就是好奇你那个$id,是怎么来的,提交过来的$_POST数组里面,有一项id吗?貌似我输出一下,没看到
不是<seript>,是<script>
echo "<seript>alert('提交成功');location.href='add.html';</seript>";你仔细看看这个语句有什么错误?