Server stores hello1.php:
  <!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>Hello, PHP</title>
    <link rel="stylesheet" href="../lit/genstyle.css" type="text/css">
  </head>
  <body>
    <h1>Hello, PHP</h1>
    <p>By Federal statute, all instruction in a programming
    language must start with Hello, World!.</p>
      <?php
	echo "<p>Hello, World!</p>";
	/* Notice the <?php ?> escape brackets. */
      ?>
  </body>
</html>