$a = 10; if($a < 8) { echo "It is less than 8.
"; } if($a > 8 && $a != 15) { echo "Yes, its greater than 8 and not equal to 15.
"; } if($a > 15) { echo "It is greater than 15"; }
Hello World!