Using Comparison Operators in if Statements : Comparison Operators « Operator « PHP
- PHP
- Operator
- Comparison Operators
Using Comparison Operators in if Statements
<?php
$p = 14;
if ($p < 15) {
echo "Sorry! <BR>";
} else {
echo "Congratulations";
}
?>
Related examples in the same category