得给分哦
我稍微改了一下文件的结构,你可以自己修改
list.php
include("conn.php");
$sql="select * from message";
$query=mysql_query($sql);
while($row=mysql_fetch_array($query)){
?>
edit.php
add.php
include ("conn.php");
if(isset($_POST[submit])) {
if($_POST['user']==""||$_POST['title']==""||$_POST['content']=="")
else{
$sql="insert into message(user,title,content,lastdate)
values ('".$_POST[user]."','".$_POST[title]."','".$_POST[content]."','".date('Y-m-d H:i:s')."')";
mysql_query($sql);
echo"
";
echo "
发表成功!5秒之后自动跳转,如果没有自动跳转点这里返回";
}
}
?>
conn.php
$conn = @ mysql_connect("localhost", "root", "123") or die("数据库链接错误");
mysql_select_db("bbs", $conn);
?>
add.php和edit.php,不过我喜欢分开,具体怎样,你自己斟酌,按自己的喜好。