首頁 >後端開發 >php教程 >一個簡單範例來示範用PHP存取表單變量

一個簡單範例來示範用PHP存取表單變量

WBOY
WBOY原創
2016-07-30 13:31:341052瀏覽

先寫表單頁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教程有興趣的朋友有所幫助。

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn