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.
Assistance needed
Collapse
X
-
Try this, just wrote it lemme know if it works. Save as PHP: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.
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! -

Comment