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