<!DOCTYPE html>
<html>
<body>

<?php
$x = "Hello world!";
echo $x;
echo "<br>";
$x = 'Hello world!';
echo $x;
?>


</body>
</html>