Guestbook order newest first?

Post custom hacks and enhancements for phpwcms here only. Maybe some of these things will be included in official release later.
Post Reply
Repute
Posts: 45
Joined: Mon 10. Nov 2003, 16:32
Location: Netherlands
Contact:

Guestbook order newest first?

Post by Repute »

Does someone know how I get the newest messages first instead of the oldest?

Tnx!

Repute
Image
http://www.repute.nl the official phpwcms dutch translator!
Also check http://www.chihuahua-club.nl
User avatar
DeXXus
Posts: 2168
Joined: Fri 28. Nov 2003, 06:20
Location: USA - Florida

Post by DeXXus »

These lines of code are related to ordering of guestbook, if you wanna "experiment". (DESC=descending/ASC=ascending):

"include/inc_act/act_guestbook.php"

Code: Select all

$sql .= intval($_GET['cid'])." AND guestbook_trashed=0 ORDER BY guestbook_created DESC;";
"include/inc_front/content/cnt18.article.inc.php"

Code: Select all

$guestbook['sql'] .= $crow["acontent_id"]." AND guestbook_trashed=0 ORDER BY guestbook_created DESC";
Repute
Posts: 45
Joined: Mon 10. Nov 2003, 16:32
Location: Netherlands
Contact:

Post by Repute »

Great tnx for your quick and good clear awnser!
Image
http://www.repute.nl the official phpwcms dutch translator!
Also check http://www.chihuahua-club.nl
Post Reply