最近开始学PHP,照着做了一个留言薄,和上面的代码一样但是数据就是无法插入到MySql数据库中,很是郁闷。有关的两个文件如下:
connect.php(连接数据库):
<?php
$conn =mysql_connect("localhost", "root", "") or die("数据库链接错误");
mysql_select_db("bbs", $conn);
mysql_query("set names 'GBK'"); //使用GBK中文编码;
?>
add.php(向数据库中插入数据):
<?php
include("connect.php");
if($_POST['submit'])
{
$sql="insert into message ('id','user','title','content','lastdate')" .
" values(' ','$_POST[user]','$_POST[title]','$_POST[content]',now())";
mysql_query($sql);
echo $sql;
echo "发表成功";
}
?>
<form action="add.php" method="post" name="myform" onsubimt="return CheckPost();">
用户:<input type="text" size=10 name="user"/><br>
标题:<input type="text" name="title"/><br>
内容:<textarea name="content" cole="60" rows="10"></textarea><br>
<input type="submit" name="submit" value="发布留言"/>
</form>