Source for comments.php:
<?php
ini_set('include_path', ini_get('include_path') . ':/home/benm/public_html');
include 'http_header.php'; ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<?php $f = "comments"; //basename(__FILE__, ".php");
include 'head.php';
?>
<title>comments - ben's machinery</title>
</head>
<body>
<?php include 'title.php' ?>
<?php include 'comments.txt' ?>
<p>Post your comment below: be warned, IPs are logged</p>
<form action="post.php" method="post">
<p>Name:<br/>
<input type="text" name="name"/><br/>
Comment:<br/>
<textarea name="comment" rows="5" cols="32"/><!-- I want to override the width and length of the box with CSS but W3C says I need rows and cols anyway --><br/>
<!-- <input class="box" type="text" name="comment"/><br/> -->
The button immediately below this text box contains the word:<br/>
<input type="text" name="turingtest"/><br/>
<input type="submit" value="Submit"/>
</p>
</form>
<?php include 'footer.php' ?>
</body>
</html>