我有一個聯繫表單和一個文本字段供人們輸入其公司/組織的名稱。我想阻止提交表單,如果它包含任何以下詞語的任何或變體:uc,uci,irvine,ucirvine。這是我的腳本:PHP聯繫表格檢測文本字段中的單詞
// company group
if(trim($_POST['cmpnyGrp']) === '') {
$cmpnyGrpError = '<span class="error">Please enter your company or group name.</span>';
$hasError = true;
} else if (isset($_POST['cmpnyGrp'])) {
$banned = array('uci', 'uc', 'ucirvine', 'uc-', 'uc ', 'irvine');
$cmpnyGrpError = '<span class="error">If you are UCI, select UC under User Type and enter account string.</span>';
$hasError = true;
} else {
$cmpnyGrp = trim($_POST['cmpnyGrp']);
}
我知道我做錯了什麼,因爲這是行不通的。我不是一個程序員,但我正在盡力理解要做什麼。任何援助將不勝感激。非常感謝你。
你在哪裏使用$禁止陣列? – 2013-10-21 23:06:33