Forum Moderators: coopster
<?php
$dateUnit = date('l');
switch($dateUnit)
{
case "1" : $page = "page1.html";
break;
case "2" : $page = "page2.html";
break;
case "3" : $page = "page3.html";
break;
case "4" : $page = "page4.html";
break;
case "5" : $page = "page5.html";
break;
default : $page = "page0.html";
break;
}
?>