我試圖將用戶重定向到另一個網頁,具體取決於他們檢查了哪個單選按鈕。檢查是否使用POST檢查單選按鈕
下面是相關代碼:
<form action="sample.php" method="post">
<input name="survey" type="radio" value="Yes" /> Yes
</br>
<input name="survey" type="radio" value="No" /> No
</form>
<?
if ($_POST['survey'] == "Yes")
{
header('Location: http://localhost/survey.php');
}
else if ($_POST['survey'] == "No")
{
header('Location: http://localhost/survey.php');
}
?>
出於某種原因,我都會我的if語句中的一個錯誤。這並不認爲「調查」是一個有效的指標。我怎麼做沒有辦法將我的表單鏈接到php代碼?
是一個文檔或者2個獨立的文件? – Michael
此代碼位於單個文件中。但重定向到另一個文件。 – user1840522
我不確定你的意思?我正在使用單選按鈕? – user1840522