View Full Version : Banner change due to time
Stromgren
04-15-2007, 04:53 PM
I need a script that can change my website banner on different times of the day, so ill have one banner in the morning and one in the evening... Can somone help me out or tell me where to start?
Thanks in advance...
johnz
04-17-2007, 01:27 AM
You can use PHP to achieve this:
<?php
$time = date("a");
if($time=="am") {
$adimg = "morningad.jpg";
$link = "morninglink.html";
}
elseif($time=="pm") {
$adimg = "eveningad.jpg";
$link = "eveninglink.html";
}
echo("<a href=\"$link\"><img src=\"$adimg\" alt=\"ad\" />");
?>
This is a simple way of doing it. It bases which image and link to display based on if its AM or PM part of the day.
If you would like to define it even more you can by changing the variables in the date function.
BonRouge
04-17-2007, 02:18 AM
For different times... http://bonrouge.com/~faq#time-pic
vBulletin® v3.6.7, Copyright ©2000-2009, Jelsoft Enterprises Ltd.