<?php
//The multidimentional array containing all of the ad info - this is the only place you edit
$ads = array(
// Image Source Hyperlink Destination Alt Text
0 => array('images/ad1.png', 'http://www.yoursite.com', 'My Awesome Site'),
1 => array('images/ad2.png', 'http://www.anothersite.net', 'Another Site') //...so on, so forth
);
//-------------------There's no need to edit anything beneath this point------------------------
//select a random ad from the array
$select = rand(1, count($ads) + 1);
//display the selected ad
echo '<a href="'.$ads[$select][1].'"><img src="'.$ads[$select][0].'" alt="'.$ads[$select][2].'" /></a>';
?>