Answers for "php elseif :"

PHP
15

php elseif

<?php
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";
}
?>
Posted by: Guest on April-23-2020
0

php else

<?php
if ($a > $b) {
  echo "a is greater than b";
} else {
  echo "a is NOT greater than b";
}
?>
Posted by: Guest on April-23-2020
0

php if simple

echo empty($address['street2']) ? "Street2 is empty!" : $address['street2'];
Posted by: Guest on November-07-2020

Browse Popular Code Answers by Language