-1
我需要你的幫助,弄清楚如何將多個if語句與不同條件組合起來。下面是我試圖去工作的代碼。比較數字和字符串
<p><?php
$age="25";
$ID="prog5";
if($age >= "16" && $age <= 32 && $ID == prog5) {
print "Welcome to the Future of Systems";
}
else {
print "Sorry, your ID isn't recognized by sync. Please click here for further assistance.";
}
?></p>
我想聲明「歡迎使用系統的未來」,以顯示只有$age
是16和32之間,如果$ID
爲prog5
,但我用不工作的表達式。
謝謝,這個工作! :) – TDh 2014-10-31 01:39:36