To display a random thumb and/or link in your page:
On your page somewhere write:
Code:
<?PHP require("random.php"); ?>
Then put the following code into a file named random.php:
Code:
<?PHP
$total = 2;
$site["1"] = "http://www.ha4l.com/";
$site["2"] = "http://www.eg4l.com/";
$thumb["1"] = "images/thumb1.gif";
$thumb["2"] = "images/thumb2.gif";
srand(time());
$x = (rand()%$total);
echo('<A HREF="' . $site[$x] . '"><IMG SRC="' . $thumb[$x] . '" BORDER=0></A>');
?>