PHP项目:留言板开发(表单提交后的页面处理)

2021-10-09 15:59:08 浏览数 (1)

add.php

代码语言:javascript复制
<?php
error_reporting(0);
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 "<script>alert('提交成功!返回首页。');kk='add.html';</script>";
}
?>

0 人点赞