<!DOCTYPE html>
<html>
<body>
<?php
$x = 5; // $x is an integer
$y = "John"; // $y is a string
echo $x;
echo $y;
?>
</body>
</html>