Mega Code Archive

 
Categories / Php / Statement
 

Making a decision with if()

<? $logged_in = true; if ($logged_in) {    print "Welcome aboard, trusted user."; } ?>