Answers for "multiple if statements in php"

PHP
7

php if else

<?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
1

php multi condition if

if($var == "abc" || $var == "def" || ...)
{
    echo "true";
}
Posted by: Guest on December-06-2020

Code answers related to "multiple if statements in php"

Browse Popular Code Answers by Language