Daily Archives: August 2, 2006

Alternative If Statement Syntax In PHP

Are you tired of typing this kind of if statement? $a = 10; if ($a > 10) { $message = “variable ‘a’ is greater than 10″; } else { $message = “variable ‘a’ is not greater than 10″; } echo … Continue reading

Posted in The Web | Tagged , | 3 Comments