剛開始學習php 網路上查了很多也不能用$_post函數列印出表單的資料
這是程式碼
HTML部分
<code><html> <head> <title>php test</title> <meta charset=utf-8> <body > <form action="01.php"method="post"name="form1" > <table> <tr> <td>fs</td> <td><input name="fs"type="text"></td> <td><input type="submit"value="提交"></td> </tr> </table> </form> </body> </head> </html> PHP部分 <?php $fs=$_post['fs']; echo $fs; ?> 按提交按钮后只能打印出php的代码</code>
剛開始學習php 網路上查了很多也不能用$_post函數列印出表單的資料
這是程式碼
HTML部分
<code><html> <head> <title>php test</title> <meta charset=utf-8> <body > <form action="01.php"method="post"name="form1" > <table> <tr> <td>fs</td> <td><input name="fs"type="text"></td> <td><input type="submit"value="提交"></td> </tr> </table> </form> </body> </head> </html> PHP部分 <?php $fs=$_post['fs']; echo $fs; ?> 按提交按钮后只能打印出php的代码</code>
確定表單action
路徑正確
php
的POST
接收寫法錯誤,要大寫$_POST['fs']
,你小寫方式會被解析成一個變數
$_POST
大寫。
php變數是區分大小寫的,方法,函數名和常數不區分(但是仍然要求一致),需要像樓上這位朋友說的一樣要大寫,使用$_POST[],還有你說可以打印出php代碼,我看應該不會的.