php无法传输form的值怎么办?
错误代码;
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'"); }?>
解决办法:
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><?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'"); }?>
照上面的完善一上,如果还不行,在mysql_select_db(data);前面加一个 print_r($_post); 看能输出什么数据。
更多php相关知识,请访问!
以上就是php无法传输form怎么办的详细内容。