You can just do:
PHP Code:
<?php
$includes = array(
"Monday" => "monday.html",
"Tuesday" => "tuesday.html",
"Wednesday" => "wednesday.html",
"Thursday" => "thursday.html",
"Friday" => "friday.html",
"Saturday" => "saturday.html",
"Default" => "default.html"
);
$day = ucfirst(date('l'));
if(isset($includes[$day])){
include("/hsphere/local/home/makukulo/fotogenicos.net/seleccao/byremus/".$includes[$day]);
} else {
include("/hsphere/local/home/makukulo/fotogenicos.net/seleccao/byremus/".$includes['Default']);
}
?>
Bookmarks