View Single Post
Old 11-16-2004, 09:27 PM  
Dynamix
G F Y not
 
Industry Role:
Join Date: Jan 2004
Location: MN
Posts: 2,910
Quote:
Originally posted by dingo
Hi guys just wondering if anyone can give me some ideas on banner rotation scripts I want to be able to add a code to my galleries and have the banners change automatically. Preferably a free app.
Try this, just wrote it lemme know if it works. Save as PHP:

PHP Code:
<?
/* Author:   Patrick
   This script will randomize a banner output.
*/


$url[0] = "www.url.com";
$img[0] = "image1.gif";

$url[1] = "www.url2.com";
$img[1] = "image2.gif";


srand(time());
$random = (rand()%9);    // change "9" to the number
            // of banners to rotate - 1

echo '<A HREF="'.$url[$random].'"><IMG SRC="'.$img[$random].'"></A>';

?>
__________________

TGPFactory Full TGP Design & Installation Services
ICQ 250 142 484 · AIM TGPDynamix · Email: patrick (at) tgpfactory (dot) com
See who I am at AdultWhosWho.com!
Dynamix is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote