hi want to use this script to randomize my galleries;
<?php
$fileName = "./galleries.txt";
mt_srand( (double) microtime() * 1000000 );
$a = file($fileName);
$randNum = mt_rand( 0, sizeof($a)-1 );
header( "Location: ". $a[$randNum] );
?>
can anyone tell me how the gallerie links should look
so numbered and all,please an exeample
