PHP - Operators
Find the error in this PHP code snippet:
$x = 5;
$y = 10;
if ($x > $y) {
echo 'x is greater';
} elseif ($x < $y) {
echo 'y is greater';
} else
echo 'Equal';
}