先寫表單頁orderform.html,用post方法請求服務端腳本檔:processorder.php
processorder.php:
<!DOCTYPE html> <html> <head lang="zh_CN"> <meta charset="UTF-8"> <title>订单页面</title> </head> <body> <h2>Jason的购物清单</h2> <form action="processorder.php" method="post"> <label>男装:</label><input type="text" name="cloths"/> <label>鞋子:</label><input type="text" name="shoes"/> <label>眼镜:</label><input type="text" name="glasses"/> <input type="submit" value="提交"> </form> </body> </html>
.
以上就介紹了一個簡單範例來示範用PHP存取表單變量,包括了方面的內容,希望對PHP教程有興趣的朋友有所幫助。