Timed Image Rotation

Associate
Joined
9 Jul 2004
Posts
1,132
Location
Folding for OcUK
Hi,

As many schools do, mine has a two week timetable. My boss want to be able to show what week we are in on the school website. Ive looked about but i cant find anything that will loop two pictures, one every week.

Does anyone have a script that can do this or know where i can find one?

Cheers
 
If you're using PHP, you could use the date('W') function to tell you what week of the year you're in then do something like:

if( (date('W') % 2) == 0 ){
//display image 1
}else{
//display image 2
}

or vice versa.
 
Back
Top Bottom