在PHP中,可以使用$_POST
、$_GET
或$_REQUEST
超全局變量來接收用戶輸入數據。
$_POST
:用于接收通過POST方法提交的表單數據。<input type="text" name="username">
<input type="password" name="password">
<input type="submit" value="Submit">
$username = $_POST['username'];
$password = $_POST['password'];
$_GET
:用于接收通過GET方法傳遞的數據,通常是通過URL參數傳遞。http://example.com/index.php?username=john&password=123456
$username = $_GET['username'];
$password = $_GET['password'];
$_REQUEST
:用于接收GET和POST方法傳遞的數據。$username = $_REQUEST['username'];
$password = $_REQUEST['password'];
請注意,接收用戶輸入數據時應該進行適當的輸入驗證和過濾,以確保數據的安全性和完整性。