<!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>