cut n paste from elsewhere.. I'm looking into this as well to see if there is a better way.
gallery.php contain the next script to select an random link from gallery.txt
$fileName = "gallery.txt";
mt_srand( (double) microtime() * 1000000 );
$a = file($fileName);
$randNum = mt_rand( 0, sizeof($a)-1 );
header( "Location: ". $a[$randNum] );
?>
gallery.txt contain for example next 3 links:
site3.com/linkgallery1.html
site3.com/linkgallery2.html
site3.com/linkgallery3.html
|