<!DOCTYPE html>
<html>
<head>
<title> Hello, World for PHP in CS 318 - Spring 2013 </title>
<meta charset="utf-8" />
</head>
<body>
<?php
$answer = 42;
?>
<p>
Hello, PHP World! The answer to life, the universe,
and everything is <?= $answer ?>.
</p>
<?php
require_once("my-std-footer.html");
?>