hes a simple one that doesn use cookies or anything
so a person can get the same gallery twice
Its php
if(!$fd = @fopen ("FILE WITH LINKS.txt", "r"))
exit;
$fd = fopen ("FILE WITH LINKS.txt", "r");
while (!feof ($fd))
{
$buffer = fgets($fd, 4096);
$lines[] = $buffer;
}
fclose ($fd);
srand((double)microtime()*1000000);
$numberr=rand(0, count($lines)-1);
$url=$lines[$numberr];
header("Location: $url");
__________________
Amen
|