在 PHP 中,可以使用 $_POST
變量來獲取 POST 請求中的數據。
假設有一個表單提交數據到 submit.php
文件:
<form method="post" action="submit.php">
<input type="text" name="username">
<input type="password" name="password">
<input type="submit" value="提交">
</form>
在 submit.php
文件中,可以使用 $_POST
來獲取表單提交的數據:
$username = $_POST['username'];
$password = $_POST['password'];
echo "Username: " . $username;
echo "Password: " . $password;
這樣就可以獲取到 POST 請求中的數據,并進行相應的處理或存儲。請注意,需要注意對用戶輸入的數據進行驗證和過濾,以防止安全問題。