add.php文件内容
//导入连接数据库文件
include ('conn.php');
//检测用户是否提交按钮
if(isset($_POST['submit'])){
$id=$_POST['id'];
$user=$_POST['user'];
$title=$_POST['title'];
$content=$_POST['content'];
$sql="insert into message(id,user,title,content,lastdate)values('','$user','$title','$content',now())";
mysqli_query($conn,$sql);
// echo "";
echo"";
}else{
echo "失败";
}
?>
liu.html内容
ID | 名字 | 标题 | 内容 |
|---|---|---|---|
ID | TB - Monthly | 01/04/2012 | Approved |
问题 : 没错提交 感觉都没走if 就到else了
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
你确定你的sql语句没有写错么 $sql="insert into message(id,user,title,content,lastdate)values('','$user','$title','$content',now())";
values(" 这里错了吧
你这样写肯定会到else的。 不提交 ,$_POST['submit'] 肯定没有内容。
是添加失败吗????你看下 SQL语句 单引号是不解析变量的 其它的暂时没能从代码上看得出来
有大神帮忙看下么
是直接就提示失败了是么?