I have a script I had written for my paysites, it rotates a different html page every day, 5 different pages rotate total.
Here is the code, how would I need to tweek this in order to make it rotate 9 different pages total instead of 5?
Thanks in advance!
< ? php $day = date("z");
if($day >4)
{
while($day > 4)
{
$day = ($day - 4); }
}
include("0$day.html");
?>
Here is the code, how would I need to tweek this in order to make it rotate 9 different pages total instead of 5?
Thanks in advance!
< ? php $day = date("z");
if($day >4)
{
while($day > 4)
{
$day = ($day - 4); }
}
include("0$day.html");
?>



Comment