Or change the time on your server, or switch the < for an > :p
Printable View
Or change the time on your server, or switch the < for an > :p
so how would I write it if I have 2 pictures and wanted them to switch ever SIX hours instead of every 12?
I am guessing the server goes on a 24 hour clock, but I have no idea how to re-write the code to account for 6 hour increments.
aTdHvAaNnKcSe :D
PHP Code:<?php
header("Content-Type: image/png");
$a = date('G');
if($a < 6) $file = "tooDarnedEarlyByFar.png";
else if($a < 12) $file = "early.png";
else if($a < 18) $file = "morning.png";
else $file = "daytime.png";
readfile($file);
?>
Thanks Twey, you know... I almost did exactly that, and the only thing that kept me from doing it is that I have a couple of players that are currently on this level and I didn't want to screw anything up, lol.
Thanks again!
You're the best.
Heh. You should have tested it in a seperate page, seen it worked, and overwritten the main page.