VDRS Host
05-05-2006, 03:59 PM
i nned a banner rotation script like tyhey have here on wht where can i find one thats easy to use and manage?
![]() | View Full Version : banner rotation script VDRS Host 05-05-2006, 03:59 PM i nned a banner rotation script like tyhey have here on wht where can i find one thats easy to use and manage? Amdac 05-05-2006, 04:04 PM The only one I've ever used is phpAdsnew, it could be a little complex at times but does a great job. I believe WHT uses AdJuggler which from my understanding isn't free. radiofm 05-05-2006, 04:09 PM www.phpadsnew.com - working great on my few sites. empresasdehosting 05-05-2006, 06:53 PM http://www.bannermanage.com gedevelopment 05-07-2006, 06:21 AM pretty simple script to write really. if you want the banners to rotate per impression you could code in PHP summit like the following. Assuming you have all the banners as gifs. <?php $banner_number = rand (1,10) // Random banner (total of 10) if ($banner_number == 1) { ?> <img src="banner1.gif"> <?php } elseif ($banner_number == 2) { ?> <img src="banner2.gif"> <?php } elseif ($banner_number == 3) { .... and so on Amdac 05-07-2006, 02:55 PM pretty simple script to write really. Most people will want logged stats to prove they're getting what they were promised. redihot.com 05-07-2006, 03:02 PM pretty simple script to write really. if you want the banners to rotate per impression you could code in PHP summit like the following. Assuming you have all the banners as gifs. <?php $banner_number = rand (1,10) // Random banner (total of 10) if ($banner_number == 1) { ?> <img src="banner1.gif"> <?php } elseif ($banner_number == 2) { ?> <img src="banner2.gif"> <?php } elseif ($banner_number == 3) { .... and so on Thanks for that, wasn't particually looking for a script although it will be useful for our redesign. sharmila 05-07-2006, 06:18 PM Do we have any script which can rotate adsense and yahoo publisher script together with given time period. |