<!--
Created by Paul Janaway
Site:
http://maddogsplace.co.uk
-->
<br><?php
///////////
// SETUP //
///////////
// State how many ads there are in total (max: 3)
$total_ads = 4;
// No need to edit
$rand_ban = rand(1,$total_ads);
// Banner size
$banner_width = 468;
$banner_height = 60;
// Decide on if you want it to create a new window or not when
// the ad is clicked.
// 1 = new window
// 2 = same window
$window = 1;
// Ad details, goes by: image url, site url, site description.
// If you have 1 ad, then fill in ad_1 only, if you have 2 ads
// then fill in ad_1 and ad_2 etc.
$ad_1 = array("url immagine",
"url sito",
"descrizione sito");
$ad_2 = array("url immagine",
"url sito",
"descrizione sito");
$ad_3 = array("url immagine",
"url sito",
"descrizione sito");
$ad_4 = array("url immagine",
"url sito",
"descrizione sito");
///////////////////////////////////////////////
// DO NOT EDIT BELOW UNLESS YOU KNOW HOW TOO //
///////////////////////////////////////////////
if($rand_ban == 1) {
$show_ad_image_url = $ad_1[0];
$show_ad_url = $ad_1[1];
$show_ad_description = $ad_1[2];
} elseif($rand_ban == 2) {
$show_ad_image_url = $ad_2[0];
$show_ad_url = $ad_2[1];
$show_ad_description = $ad_2[2];
} elseif($rand_ban == 3) {
$show_ad_image_url = $ad_3[0];
$show_ad_url = $ad_3[1];
$show_ad_description = $ad_3[2];
} elseif($rand_ban == 4) {
$show_ad_image_url = $ad_4[0];
$show_ad_url = $ad_4[1];
$show_ad_description = $ad_4[2];
}
if($window == 1) {
echo "<a href=\"" . $show_ad_url . "\" target=\"_blank\">";
echo "<img src=\"" . $show_ad_image_url . "\" width=\"";
echo $banner_width . "\" height=\"" . $banner_height . "\" ";
echo "border=\"0\" alt=\"" . $show_ad_description ."\"></a>";
} else {
echo "<a href=\"" . $show_ad_url . "\"><img src=\"";
echo $show_ad_image_url . "\" width=\"" . $banner_width . "\" ";
echo "height=\"" . $banner_height . "\" border=\"0\" alt=\"";
echo $show_ad_description ."\"></a>";
}
?>