当前位置:编程学习 > php >>

php5的sql问题

<?php
/*
* Created on 2009-11-13
*
* To change the template for this generated file go to
* Window - Preferences - PHPeclipse - PHP - Code Templates
*/
include("conn.php");
if($_POST['submit']){
echo $sql="insert into message (id,user,title,content,lastdate)".
"values('','$_POST(user)','$_POST(title)','$_POST(content)',now())";

}

?>

<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="submit" name="submit" value="发布留言"/>
</form>
当验证$sql的输出时 出现错误 就是 在输入用户和标题等 显示出来的是insert into message (id,user,title,content,lastdate)values('','Array(user)','Array(title)','Array(content)',now()) 而不是相应的输入用户等 不知道错在什么地方

追问:用这种方法显示有错

CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,