PDA

View Full Version : Banner rotator


Antony
07-28-05, 08:25 PM
Does anyone know where I can get some kind of thing that rotates a load of different banners on a site please?

thanks

Geezer
07-28-05, 08:37 PM
Here you go:

<SCRIPT LANGUAGE="JavaScript">
var how_many_ads = 4;
var now = new Date()
var sec = now.getSeconds()
var ad = sec % how_many_ads;
ad +=1;
if (ad==1) {
txt="";
url="http://www.YOURSITE.com";
alt="Your Alt Text";
banner="http://www.WHERE_YOUR_BANNER_IS_LOCATED.gif";
width="468";
height="60";
}
if (ad==2) {
txt="";
url="http://www.YOURSITE.com";
alt="Your Alt Text";
banner="http://www.WHERE_YOUR_BANNER_IS_LOCATED.gif";
width="468";
height="60";
}
if (ad==3) {
txt="";
url="http://www.YOURSITE.com";
alt="Your Alt Text";
banner="http://www.WHERE_YOUR_BANNER_IS_LOCATED.gif";
width="468";
height="60";
}
if (ad==4) {
txt="";
url="http://www.YOURSITE.com";
alt="Your Alt Text";
banner="http://www.WHERE_YOUR_BANNER_IS_LOCATED.gif";
width="468";
height="60";
}
document.write('<center>');
document.write('<a href=\"' + url + '\" target=\"_top\">');
document.write('<img src=\"' + banner + '\" width=')
document.write(width + ' height=' + height + ' ');
document.write('alt=\"' + alt + '\" border=0><br>');
document.write('<small>' + txt + '</small></a>');
document.write('</center>'); </SCRIPT>

You can add as many as you like just change the "var how_many_ads = 4;" to the amount you want and then just add "(ad==2)" for each.

The banners rotate on every refresh.

Antony
07-28-05, 08:43 PM
Ahh man your a top bloke

nice one

-HF
07-28-05, 08:44 PM
obviously you could just install phpAdsNew (http://phpadsnew.com/two/)

Antony
07-28-05, 08:46 PM
have you got msn or icq geezer?

Antony
07-28-05, 08:54 PM
Oh even better thanks -HF :)

Antony
07-28-05, 08:59 PM
where do i put the script? Where the banner is going to go???

Or in the head???

-HF
07-28-05, 09:09 PM
where do i put the script? Where the banner is going to go???

Or in the head???


you talking about Geezer's code now or phpAdsNew ?

AdsNew you isntall on a server and it will serve banner as well as text ad campaigns to any site you want.

Antony
07-28-05, 09:15 PM
its okay I'v sussed it now