PDA

View Full Version : bannerswopping manager?



radman
July 8th, 2003, 16:52
hey
i am looking for an bannerswopping script... is there an ad free hosting service...

i just need an free banner manager.... that can swop between a list of banners that i upoload or something.....????

??? any luck ????

Abush
July 8th, 2003, 20:58
maybe you should check out http://www.hotscripts.com and search for ad rotator or random banner display or sumtin like that....u might find one

radman
July 9th, 2003, 16:14
sweet thanx...

should've thought so......

Abush
July 9th, 2003, 16:19
ur welcome:o

Loon
July 9th, 2003, 17:21
Depends how flashy you want things, if you just add the normal HTML for your banners that you would use in your page to a text file, one per line, you could just use something like



<?php

$file ="filename.txt";
$x = file("$file");
$y = rand(0, sizeof($x)-1);
echo $x[$y];

?>


which would display a random banner from the file everytime somebody loads the page :)

*edit, make sure the file permissions are readable