<html>
<body>
<h1>The <= Operator</h1>
<p>Compare two variables and write a message if $y is less than, or equal to, $x.</p>
$x = 100;
$y = 100;
if ($y <= $x) {
echo "$y is less than, or equal to $x";
}
</body>
</html>
Compare two variables and write a message if $y is less than, or equal to, $x.
100 is less than, or equal to 100