Hi Bruce.
Thank you for posting the PHP code for rotating content. I've found it VERY useful.
I'm new to PHP code, but couldn't this script be condensed even further to just:
<?php
$day = (date("D"));
include("($_SERVER['DOCUMENT_ROOT']."/$day.html");
?>
(assuming the .html files are named mon.html, tues.html, wed.html, etc.)
~Marty