在 PHP 中,使用 $_POST 或 $_GET 超全局變量可以處理表單數據。
如果表單的 method 屬性值為 “post”,則可以使用 $_POST 超全局變量來獲取表單數據。
例如,如果表單中有一個名為 “username” 的輸入框,可以使用以下代碼來獲取輸入的值:
$username = $_POST[‘username’];
如果表單的 method 屬性值為 “get”,則可以使用 $_GET 超全局變量來獲取表單數據。
例如,如果表單中有一個名為 “username” 的輸入框,可以使用以下代碼來獲取輸入的值:
$username = $_GET[‘username’];
另外,還可以使用 isset() 函數來判斷表單數據是否存在。例如:
if (isset($_POST[‘username’])) {
$username = $_POST[‘username’];
} else {
// 表單數據不存在的處理邏輯
}
請注意,處理表單數據時應該進行必要的驗證和過濾,以確保數據的安全性。