Started to learn how to get the most recent modified date from the Lawyer Reserarch directory. Created a test page for that purpose.
Upgraded to PHP 5 so I could use the scandir function.
The CGI hit counter would no longer work using the include for reasons that I could not figure out. But I switched out the include statement for the following which works just fine:
<?php
$a = file_get_contents (“http://www.glenpritchard.com/cgi-bin/mcount.cgi”);
echo ($a);
?>