2014-10-18 80 views
-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之間,如果$IDprog5,但我用不工作的表達式。

回答

1

更改,如果這樣

在簡短的聲明,字符串被引號分隔:

if($age>=16 && $age<=32 && $ID=="prog5") 
+0

謝謝,這個工作! :) – TDh 2014-10-31 01:39:36