PDA

View Full Version : Banner Rotator?



HostMyBB.org
July 6th, 2005, 13:35
Im looking for a banner rotator, has anyone got a simple script?

Thanks.

overulehost
July 6th, 2005, 13:42
Im looking for a banner rotator, has anyone got a simple script?

Thanks.

well... i guess that you are looking for PHP scripts ?

then here

http://www.hotscripts.com/search/4982877.html :)

HostMyBB.org
July 6th, 2005, 13:59
Thanks, I never thought of looking on hotscripts.

overulehost
July 6th, 2005, 14:05
Thanks, I never thought of looking on hotscripts.

you are welcome :)

well , i recently just got a script posted by them.
They have ton of scripts and highly recommended to search their site for useful scripts

ryza
July 6th, 2005, 18:02
Im looking for a banner rotator, has anyone got a simple script?

Thanks.



<?php
# by ryza - www.deluxnetwork.com
# random ad script.
$banner=Array();
$banner[1]="AD CODE 1";
$banner[2]="AD CODE 2";
// ADD MORE HERE

$banner_number=rand(1, count($banner));
$buffer=$banner[$banner_number];
print "$buffer";
?>

R4g1ng
July 6th, 2005, 21:59
I like PHPMyAds but you've probably found a script by now.

overulehost
July 7th, 2005, 03:49
<?php
# by ryza - www.deluxnetwork.com
# random ad script.
$banner=Array();
$banner[1]="AD CODE 1";
$banner[2]="AD CODE 2";
// ADD MORE HERE

$banner_number=rand(1, count($banner));
$buffer=$banner[$banner_number];
print "$buffer";
?>

that should work but doesn't really track any details for future analysis