//>= Stands for greater than or equal to. $a = 1; $b = 0; if($a >= $b){ return true; }else{ return false; } //This would return false becaue 0 is not greater than or equal to 1.