php中$_post[ ' '];怎么收不到html传来的表单啊?
html页代码:<formaction="show.php"target="mainFrame"method="post"><inputtype="text"name="...
html页代码:<form action="show.php" target="mainFrame" method="post">
<input type="text" name="words" cols="200"/><input type="submit" value="发言"/>
php页代码:<?php require_once('config.php'); ?><?phpmysql_select_db("data");$words=$_post['words'];if($words){$query="insert into chat(chtime,nick,words,face)values(now(),'$nick','$words','$face')";//插入SQL语句mysql_query($query,$link_ID); //发送留言到数据库header("refresh:0; URL='show.php'"); }
?> 展开
<input type="text" name="words" cols="200"/><input type="submit" value="发言"/>
php页代码:<?php require_once('config.php'); ?><?phpmysql_select_db("data");$words=$_post['words'];if($words){$query="insert into chat(chtime,nick,words,face)values(now(),'$nick','$words','$face')";//插入SQL语句mysql_query($query,$link_ID); //发送留言到数据库header("refresh:0; URL='show.php'"); }
?> 展开
展开全部
php是区分大小写的,用用$_POST看看。
另外一个,html部分,看不到form的结束符。
-----------------------------------------------------------
<form method="post" action="show.php" enctype="application/x-www-form-urlencoded" name="form1" id="form1">
<input type="text" name="words" value="" />
<input type="submit" value="发言"/>
</form>
<?php
mysql_select_db("data");
$words = $_POST["words"];
if($words){
$query="insert into chat(chtime,nick,words,face)values(now(),'$nick','$words','$face')";//插入SQL语句
mysql_query($query,$link_ID); //发送留言到数据库
header("refresh:0; URL='show.php'"); }
?>
照上面的完善一上,如果还不行,在mysql_select_db("data");前面加一个 print_r($_POST); 看能输出什么数据。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询