View Single Post
Old 02-21-2003, 11:49 PM  
Maca
Confirmed User
 
Join Date: Apr 2002
Location: Sydney
Posts: 183
Found this on some board only I can't remember who deserves the credit - it was however given freely for those who have PHP installed. You just write it up in a text file save it as say, galleries.php and stick it in the same directory as your gallery list.


<?
$f = file('galleries.txt');
srand((double)microtime()*1000000);
$num = rand(0,count($f)-1);
$url = $f[$num];
header("Location: $url");
?>



Hope it helps
Maca is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote