<!DOCTYPE html>
<html>
<body>
<?php
$x = 17;
$y = 8;
if ($x == 17 && $y == 8) {
echo "Hello world!";
}
?>
</body>
</html>