Greater than or equal to.
This comparison operator returns TRUE if the first expression is greater than, or equal to, the second.
<?php
if (5 >= 5)
print "5 is greater than or equal to 5";
?> 5 is greater than or equal to 5 Two numbers are compared.