Help plz
Posted: Fri Jun 26, 2015 1:23 pm
Greatings everyone AOA.
I need help with the following code
Why does it echo a=b and not b is greater than a?
I need help with the following code
Code: Select all
<?php
$a=50;
$b=55;
if(!$a>$b)
{
echo "b is greater than a";
}
elseif(!$b>$a){
echo "a is greater than b";
}
else
{
echo "a=b";
}
?>