|
yup... that script just grabs all links in a txt file and displays them... nothing more
replace
for ($index = 0; $index < count($links); $index++)
with
$count = 10; // number of links to display
shuffle($links);
for ($index = 0; $count; $index++)
with $count you can adjust the number of links to display
|