If you want to show different pages at different times of the day just simply use this:
Code:
<?php
// Get the current hour (24 hour format) on the server.
$sCurrentTime = date("H");
if ($sCurrentTime >= 0 && $sCurrentTime < 13)
{
header ("location: morning.php");
}
else
{
header ("location: afternoon.php");
}
?> Change morning.php and afternoon.php to the relevant pages. I hope you find a use for this...