right now it's:
<?php
if (!file_exists("niche.db"))
{
echo "<br><br><center><h3><b>I could not find the feeds.$today.db</b></h3></center>";
exit();
}
$links = file("niche.db");
$count = 10; // number of links to display
shuffle($links);
for ($index = 0;$count; $index++)
{
$link = explode("|",$links[$index]);
print ("<a href=http://cz8.clickzs.com/tgp.php?vdspt&70&CJ1&$link[0] target=_blank>$link[1]</a><br>");
}
exit();
?>
and it is random, very nice! but it loads like forever

something is still not right