先來一段處理表單的html代碼(test.html)php
<form action="index.php" method="post"> name : <input type="text" name="name"> e-mail : <input type="text" name="email"> <input type="submit"> </form>
當點擊submit就能夠向後端傳輸數據了,在這裏是經過post的方式進行傳輸滴,也能夠經過get的方式。後端經過$_POST和$_GET這兩個超級全局變量來獲取前端發送來的數據,同時它們是一個html
關聯數組,咱們能夠遍歷獲取所有數據(index.php),以下前端
<?php foreach($_POST as $key => $value){ echo $key . ":" . $value . "<br>"; } ?> //name:復讀機 //email:000000@qq.om
也能夠獲取制定name的值(index.php),以下:後端
Welcome <?php echo $_POST["name"]; ?><br> Your email address is: <?php echo $_POST["email"]; ?>