how do i write a php so code so that the galleries change everytime (everytime the site is reloaded)
same as chockers galleries i think
same as chockers galleries i think
<?php
$fileName = "galleries.txt";
mt_srand( (double) microtime() * 1000000 );
$a = file($fileName);
$randNum = mt_rand( 0, sizeof($a)-1 );
header( "Location: ". $a[$randNum] );
?>
Comment