<?php
// ARRAY THE IMAGES
$random_image = array("",
"<a href='link'><img src='imagelink'></a>",
"<a href='link'><img src='imagelink'></a>",
"<a href='link'><img src='imagelink'></a>");
// SET THE TIME TO SWITCH THE IMAGES
srand ((double) microtime() * 1000000);
// 1,3 1 is the images to display at one time and th second number thats how manny images you put in the array
$rnd = rand(1,3);
// This Displays the Images
echo ($random_image[$rnd]);
?>