O.P. RE: php doubt(i'm still a noob don't worry LOL)
i'll try that one later thank you =)...
anyway i was trying another one..proley it's really full of errors but can anyone tell me whats wrong here? :
<?php
$a = 1
$b = 5
if ($a > $b) {
echo "A is bigger B";
} elseif ($a == $b) {
echo "A is as big as B";
} else {$a < $b) {
echo "A is smaller then B";
}
?>
|