Needed this script for one of my sites so I just coded it up in minute or two.

PHP Code: 
<?php
$lesites 
= array(
    
'http://www.warezlobby.org/',
    
'http://www.atomicwarez.com/',
    
'http://www.warezsearch.org/'
);

$randsite $lesites[array_rand($lesites)];

header('Location: '.$randsite);
die(
'<a href="'.$randsite.'">Click here if you have not been redirected</a>');
?>
CyberJ37 Reviewed by CyberJ37 on . [PHP] Visit Random Site Needed this script for one of my sites so I just coded it up in minute or two. <?php $lesites = array( 'http://www.warezlobby.org/', 'http://www.atomicwarez.com/', 'http://www.warezsearch.org/' ); $randsite = $lesites; Rating: 5