$a = 15; if($a > 20) { echo "It is greater than 20.
"; } else { echo "No, It is not greater than 20.
"; } //another example if($a > 10 && $a != 5 && $a < 25) { echo "Yes, $a satisfied all checking."; } else { echo "No, $a satisfied all checking."; }
Hello World!