You've got a couple of choices...I incorporated this into my software that I posted here:
http://www.blackhatworld.com/blackha...erator-v1.html
Or if you want to do it by hand, you can use the code below:
<?php
$page0 = "";
$referer = $_SERVER['HTTP_REFERER'];
$mypages = array($page0);
$myrandompage = $mypages[mt_rand(0, count($mypages) -1)];
if($referer == "")
{
echo "<meta http-equiv=\"refresh\" content=\"0;url=$myrandompage\">";
}
else
{
echo "<meta http-equiv=\"refresh\" content=\"0;url=rd1.php\">";
}
?>
For each of your links, you'd need to add a $page variable ($page0, $page1, $page2 for three links) with your links between the " "...if you don't want the referer check, you can omit that...
ND