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>';
?>