When you guys talks about a banner rotation, is it something special about it?
Other wise it simple to make one yourself.
this will show a random banner after refresh
HTML Code:
<?php $quotes = file("URL TO YOUR BANNER_FILE.PHP"); $quote = rand(0, sizeof($quotes)-1); echo $quotes[$quote]; ?>
and make a file where you store your banners plus tracker or whatever, you can add as many banners as you want in this file.
HTML Code:
<a href="#"><img src="" alt="" /></a>
<a href="#"><img src="" alt="" /></a>
<a href="#"><img src="" alt="" /></a>
Bookmarks