下面的腳本片段似乎不工作,我不知道爲什麼:如果(()和())不工作
// go to correct.php only if length between 8 and 11
$get_length = strlen($_POST["phone"]);
if(($get_length >= 8) and ($get_length <= 11)) {
header("Location: correct.php");
} else {
header("Location: incorrect.php");
}
即使長度爲6,它進入correct.php 。
據我所知,是的。是否有正確的方法來檢查,因爲我肯定地在輸入字段中輸入了6個數字,這個輸入字段有ID電話。 – oshirowanen 2011-02-28 11:16:55
'有ID電話的輸入欄。'什麼?它必須有'name ='phone'' php不識別id – 2011-02-28 11:19:38
對不起,是的,我應該說id而不是名字。 – oshirowanen 2011-02-28 11:23:37