php留言板 能获取值 不能写入数据库问题
<?phpinclude_once("config.php");include_once("head.php");if($_POST['submit']){$sql="i...
<?php
include_once("config.php");
include_once("head.php");
if($_POST['submit']){
$sql="insert into message (id,user,title,content,lastdate)
values ('','$_POST[user]','$_POST[title]','$_POST[content]',now())";
var_dump($sql);
mysql_query($sql);
}
echo date("Y-m-d");
?>
<form action="add.php" method="post" name="myform" onsubmit="return CheckPost();">
用户:<input name="user" type="text" size="10" /><br>
标题:<input name="title" type="text" /><br/>
内容:<textarea name="content" cols="60" rows="9"></textarea><br/>
<input type="submit" name="submit" value="发布留言"/>
</form> 展开
include_once("config.php");
include_once("head.php");
if($_POST['submit']){
$sql="insert into message (id,user,title,content,lastdate)
values ('','$_POST[user]','$_POST[title]','$_POST[content]',now())";
var_dump($sql);
mysql_query($sql);
}
echo date("Y-m-d");
?>
<form action="add.php" method="post" name="myform" onsubmit="return CheckPost();">
用户:<input name="user" type="text" size="10" /><br>
标题:<input name="title" type="text" /><br/>
内容:<textarea name="content" cols="60" rows="9"></textarea><br/>
<input type="submit" name="submit" value="发布留言"/>
</form> 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询