PHP Code:
<?php
$links = 5;
$a = file('a.txt');
$b = file('b.txt');
$c = file('c.txt');
for ($i = 0; $i < $links; $i++) {
$link = $a[rand(0, sizeof($a)-1)] . '-' . $b[rand(0, sizeof($b)-1)] . '-' . $c[rand(0, sizeof($c)-1)];
echo "<a href=\"http://www.url.com/$link.shtml\">" . str_replace('-', ' ', $link) . "</a><br />\r\n";
}
?>
ryan
http://pornanza.net