php else code example
Example 1: php elseif
$b) {
echo "a is bigger than b";
} elseif ($a == $b) {
echo "a is equal to b";
} else {
echo "a is smaller than b";
}
?>
Example 2: php if
$b) {
echo "a is bigger than b";
$b = $a;
}
?>
Example 3: php else
$b) {
echo "a is greater than b";
} else {
echo "a is NOT greater than b";
}
?>