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> <?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); 看能輸出什麼資料。
更多PHP相關知識,請造訪PHP中文網!
以上是php無法傳輸form怎麼辦的詳細內容。更多資訊請關注PHP中文網其他相關文章!