June 12, 2002, 10:02:08 pm
<--PreviousNext -->

Control Structures


if ($a > $b) {
    print "a is bigger than b";
} else {
    print "a is NOT bigger than b";
}