我已經創建了一個表單上有一個名爲「alert」的php表單,我要設置表單,以便如果勾選了「alert」複選框,用戶必須輸入評論爲什麼他們打勾了警報框。如果勾選框勾選強制文本區域完成
這裏是我的代碼有
if (empty($_POST['tutorComment']) && $_POST['alert'] == 'YES') {
echo "You must enter a comment on the student if you tick the alert box";
exit();
}
這似乎是工作,如果我在方框裏打勾,不輸入註釋,但是當我勾選框,並輸入註釋中的代碼仍然在這裏終止。
任何想法我錯了?
您的問題是if-clause還是別的? – sinni800 2011-06-16 10:04:58
我不確定,嘗試使用'if(!isset($ _ POST ['tutorcomments'))' – bigblind 2011-06-16 10:06:16
嘗試var_dump($ _ POST),您將看到所有後期參數。 – heximal 2011-06-16 10:07:44