Haifa linux club:PHP lecture
Prev Next


Control Structures


if:
<?
if ($a $b) {
    print 
"a is bigger than b";
    
$b $a;
}
?>
else:
<?
if ($a $b) {
    print 
"a is bigger than b";
} else {
    print 
"a is NOT bigger than b";
}
?>
elseif:
<?
if ($a $b) {
    print 
"a is bigger than b";
} elseif (
$a == $b) {
    print 
"a is equal to b";
} else {
    print 
"a is smaller than b";
}
?>



HOME