Does someone know how I get the newest messages first instead of the oldest?
Tnx!
Repute
Guestbook order newest first?
These lines of code are related to ordering of guestbook, if you wanna "experiment". (DESC=descending/ASC=ascending):
"include/inc_act/act_guestbook.php"
"include/inc_front/content/cnt18.article.inc.php"
"include/inc_act/act_guestbook.php"
Code: Select all
$sql .= intval($_GET['cid'])." AND guestbook_trashed=0 ORDER BY guestbook_created DESC;";
Code: Select all
$guestbook['sql'] .= $crow["acontent_id"]." AND guestbook_trashed=0 ORDER BY guestbook_created DESC";