JessieMTabilisma
5/12/2018 - 3:30 AM

Else if

<!DOCTYPE html>
	<html>
		<body>
		<?php
			$x = 1;
			$y = 2;
			if ($x < $y) {
   				 echo "x is less than y";
			}elseif($x > $y){
    				echo "y is greater than x";
			}else{
 				 echo "x is equal to y";
			}
		?>
	</body>
</html>