Randomising order of links

Problems installing LinkMan?
Post Reply
moonshine
Posts: 6
Joined: Sun Jul 27, 2008 9:21 pm

Randomising order of links

Post by moonshine »

I would like to show links in a random order, any ideas?
Klemen
Site Admin
Posts: 10116
Joined: Fri Feb 11, 2005 4:04 pm

Post 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.
Klemen, creator of HESK and PHPJunkyardWas this helpful? You can buy me a drink here Image

Image You should follow me on Twitter here

Help desk software | Cloud help desk | Guestbook | Link manager | Click counter | more PHP Scripts ...

Also browse for php hosting companies, read php books, find php resources and use webmaster tools
Post Reply