$a = 21;$b = 15;echo "Original value of \$a is $a and \$b is $b";if ($a >= $b) { echo "TEST\$a is greater than or equal to \$b";} else { echo "TEST\$a is not greater than or equal to \$b";}?>
Original value of \$a is $a and \$b is $b
TEST\$a is greater than or equal to \$b
TEST\$a is not greater than or equal to \$b