Less than : Logical Operators « Operator « PHP
- PHP
- Operator
- Logical Operators
Less than
<?
$a = 21;
$b = 15;
echo "<P>Original value of \$a is $a and \$b is $b</P>";
if ($a < $b) {
echo "<P>TEST\$a is less than \$b</P>";
} else {
echo "<P>TEST\$a is not less than \$b</P>";
}
?>
Related examples in the same category