RE: RE: php doubt(i'm still a noob don't worry LOL)
quote:It should be this:
No it shouldn't! It should be this:
code:<?php
$a = 1;
$b = 5;
if ($a > $b) {
echo "a is bigger than b";
} elseif ($a == $b) {
echo "a is equal to b";
} else {
echo "a is smaller than b";
}
?>