GoFuckYourself.com - Adult Webmaster Forum

GoFuckYourself.com - Adult Webmaster Forum (https://gfy.com/index.php)
-   Fucking Around & Business Discussion (https://gfy.com/forumdisplay.php?f=26)
-   -   Free Banner Rotation Script In Here » (https://gfy.com/showthread.php?t=300013)

quantum-x 05-22-2004 10:02 PM

Free Banner Rotation Script In Here »
 
Just wrote this as part of a friend's website, I get asked about simple free banner scripts all the time, so here goes

PHP Code:

<?
$value = array();
$value[0][0] = "http://URL1";
$value[0][1] = "images/ImageONE";
$value[1][0] = "http://URL2";
$value[1][1] = "images/ImageTWO";
//repeat these 2 lines for more, obviously increase the number in the first bracket

$i = rand(0, 2); // set the the number of banners you chose above.
echo "<a href='".$value[$i][0]."' target='_blank'><img src='".$value[$i][1]."' border='0'></a>";
?>

Save that as say rotate.php.

in your document where you'd like the banner, simply go
PHP Code:

<? include 'rotate.php'; ?>

Done deal. Enjoy.

KRL 05-22-2004 10:16 PM

Nice and simple. :thumbsup


All times are GMT -7. The time now is 04:50 PM.

Powered by vBulletin® Version 3.8.8
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
©2000-, AI Media Network Inc123