本人根据php100上面的教程学习php,在php视频11教程制作一个简单的留言板中遇到了一些问题希望大家帮助一

留言板的界面做好之后,却写不进信息,不知道问题出在哪里。下面是我写的程序。
<?php
/*
* Created on 2011-4-5
*
* To change the template for this generated file go to
* Window - Preferences - PHPeclipse - PHP - Code Templates
*/
include("conn.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 "发表成功";
}
?>
<form action="add.php" method="post">
用户:<input type="text"size="10" name="user"/><br>
标题:<input type="text" name="title"/><br/>
内容: <textarea name="content"></textarea><br/>
<input type="button" name="submit" value="发布留言"/>
</form>

一、if($_post['submit']){
二、"values('','$_post[user]','$_post[title]','$_post[content]',now())";
把POST改成大写追问

按照你的意思把post改成大写后,还是一样,测试能容写不进数据库!不知道是不是include("conn.php");
这个出问题了。conn.php这个文件程序书写如下:

bbs 数据库已经建立好的啦!

温馨提示:内容为网友见解,仅供参考
第1个回答  2011-04-06
到LAMP兄弟连下PHP视频教程看看
第2个回答  2011-04-05
$_POST不是$_post,试试
相似回答