Page 1 of 1

Ascending / Descending Post Listings

Posted: Fri Jan 12, 2007 12:23 am
by voggo
Hello Everyone!
I'm looking for directions on changing the settings so that the posts in the Guestbook are descending and not ascending. Does anyone know what file I might be able to do this in?

Posted: Fri Jan 12, 2007 6:44 am
by Klemen
You can try changing

Code: Select all

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

Code: Select all

$lines=array_reverse(file($settings['logfile']));
Make sure you change ALL occurrences of the above line in the script (5 times!!)

Haven't tested it so make backup of the entries file before trying anything.

Posted: Fri Jan 12, 2007 7:44 pm
by voggo
Thanks for the help....I did it! And it works great!

To cool Klemen. Sweet script for no mysql database.