Multiconditional if Statements : If statement « Statement « PHP
- PHP
- Statement
- If statement
Multiconditional if Statements
<?php
$finished = true;
$complete = 14;
if ( ($complete >= 15) || $finished)) {
echo "get some sleep!<BR>";
} else {
echo "no sleep tonight!<BR>";
}
?>
Related examples in the same category