PHP
經常使用資訊傳輸,這也是PHP
為實現動態網頁應運而生地緣由,對於資訊量極少的,我們可能會使用GET
,但是數據內容較多時我們會使用POST
#,本文就帶大家一起來看一看。
首先我們先寫一個html頁面:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> </head> <body> <form action="test.php" method="POST"> <label for="username">账号:</label> <input type="text" id="username" name="username"> <label for="password">密码:</label> <input type="text" id="password" name="password"> <input type="submit" value="提交"> </form> </body> </html>
#php驗證頁面:test.php
<?php $name=$_POST['username']; $pass=$_POST['password']; echo "用户名:".$name."<br>"; echo "密码:".$pass."<br>"; ?>
输出:用户名:lilil 密码:4561212
推薦:《2021年PHP面試題大匯總(收藏)》《php影片教學》
以上是掌握正確使用PHP中POST的方法的詳細內容。更多資訊請關注PHP中文網其他相關文章!