<?php

// Something to generate the about page.
// PJ Waskiewicz, 4/16/2001
// about.php

$filename "/home/waskiewicz.org/www/scripts/about.html";

$fp fopen($filename"r");
$page fread($fpfilesize($filename));

print 
$page;

// Get the last modified time for this file
clearstatcache();
$mtime filemtime($filename);
$modified date("d F Y h:i:s A"$mtime);

// Finish the index page with some php to give the last
// time this page was modified (overkill...)
print "<div align=right><font color=\"#999999\"><font size=-2>Modified Last: $modified</font></font></div></body></html>";

?>