Page 1 of 1

Randomising order of links

Posted: Thu Jan 01, 2009 3:28 pm
by moonshine
I would like to show links in a random order, any ideas?

Posted: Thu Jan 01, 2009 9:08 pm
by Klemen
In links.php change

Code: Select all

$lines = file($settings['linkfile']);
to

Code: Select all

$lines = file($settings['linkfile']); shuffle($lines);
That should do it.