fbrcold
Junior Member
- Jul 13, 2008
- 179
- 314
I looked forever to find a rotator script for my banners that i could use on my php sites, facebook apps, and wordpress. I had someone develop this for me and it works perfect so I am sharing it with the community. I think it is self explanatory.
To change the size of the ads just change the size of width and height.
I hope this helps some of you.
To change the size of the ads just change the size of width and height.
I hope this helps some of you.
Code:
<script type="text/javascript">
<!-- Begin
rnd.today=new Date();
rnd.seed=rnd.today.getTime();
function rnd() {
rnd.seed = (rnd.seed*9301+49297) % 233280;
return rnd.seed/(233280.0);
};
function rand(number) {
var result = Math.ceil(rnd()*number);
if (!result)result++;
return result
};
var ad_cnt2 = 10;
var ad2 = rand(ad_cnt2);
var link2;
var adBanner2;
var width2
var height2
if (ad2==1) {
link2="http://youraffiliatelink.com";
adBanner2="http://yoursite.com/image.jpg";
width2="728";
height2="90";
alt2="Your Alt text";
}
if (ad2==2) {
link2="http://youraffiliatelink.com";
adBanner2="http://yoursite.com/image.jpg";
width2="728";
height2="90";
alt2="Your Alt text";
}
if (ad2==3) {
link2="http://youraffiliatelink.com";
adBanner2="http://yoursite.com/image.jpg";
width2="728";
height2="90";
alt2="Your Alt text";
}
if (ad2==4) {
link2="http://youraffiliatelink.com";
adBanner2="http://yoursite.com/image.jpg";
width2="728";
height2="90";
alt2="Your Alt text";
}
if (ad2==5) {
link2="http://youraffiliatelink.com";
adBanner2="http://yoursite.com/image.jpg";
width2="728";
height2="90";
alt2="Your Alt text";
}
if (ad2==6) {
link2="http://youraffiliatelink.com";
adBanner2="http://yoursite.com/image.jpg";
width2="728";
height2="90";
alt2="Your Alt text";
}
if (ad2==7) {
link2="http://youraffiliatelink.com";
adBanner2="http://yoursite.com/image.jpg";
width2="728";
height2="90";
alt2="Your Alt text";
}
if (ad2==8) {
link2="http://youraffiliatelink.com";
adBanner2="http://yoursite.com/image.jpg";
width2="728";
height2="90";
alt2="Your Alt text";
}
if (ad2==9) {
link2="http://youraffiliatelink.com";
adBanner2="http://yoursite.com/image.jpg";
width2="728";
height2="90";
alt2="Your Alt text";
}
if (ad2==10) {
link2="http://youraffiliatelink.com";
adBanner2="http://yoursite.com/image.jpg";
width2="728";
height2="90";
alt2="Your Alt text";
}
document.write('<center><a href="' + link2 + '" target="_blank">');
document.write('<img src="' + adBanner2 + '" width=' + width2 + ' height=' + height2 + ' border=0
alt="' + alt2 + '"></a>');
document.write('</center>');
// End -->
</SCRIPT>