猿问

不知道为什么插入数据失败, 求大神帮我看看

这是我的insert.php

<?php

header("Content-type:text/html;charset=utf-8");

//接收数据

$title = $_POST['title'];

$content = $_POST['content'];

$addtime = date("Y-m-d H:i:s");   //2016-3-25 09:56:22

//echo $addtime;

//对数据进行验证

if ($title == '' || $content == '') {

//echo "标题或内容不能为空!";

echo "<script>alert('标题或内容不能为空!');

window.location.href='add.php';</script>";

exit;

}

//插入数据到数据库

//1.连接数据库

$conn = @mysql_connect('localhost','root','');

//2.选择数据库

mysql_select_db("mes");

//3.设置编码

mysql_query("set names utf8");

//4.准备插入sql语句

$sql = "insert into mes_info values('','{$title}','{$content}','{$addtime}')";

//5.发送sql语句

$res = mysql_query($sql);

//判断是否成功

if (!$res) {

echo "<script>alert('添加失败!');</script>";

}else{

echo "<script>alert('添加成功!');

window.location.href='index.php';</script>";

}

?>

这是我的add.php里的form表单

<form role="form" action="insert.php" method="post">

<div class="form-group">

  <label>留言主题</label>

   <input type="text" class="form-control" name="title">

</div>

<div class="form-group">

   <label>留言内容</label>

<textarea class="form-control" rows="10" name="content"></textarea>

</div>

  <input type="submit" class="btn btn-default" value="发表">

</form>



一直提示添加失败

qq_佩奇呀_0
浏览 889回答 1
1回答

天使之翼死神之镰

你echo $sql看看,应该是sql语句问题
随时随地看视频慕课网APP
我要回答