|
From: mdw c. <myd...@li...> - 2002-02-19 12:37:49
|
MyDynaWeb CVS committal Author : sukria Project : mydynaweb Module : htdocs Dir : mydynaweb/htdocs Modified Files: comment.php Log Message: The fetching order of message is now like that : the first displayed messages are the first posted. =================================================================== RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/comment.php,v retrieving revision 1.15 retrieving revision 1.16 diff -u -3 -r1.15 -r1.16 --- comment.php 19 Feb 2002 09:29:07 -0000 1.15 +++ comment.php 19 Feb 2002 12:37:47 -0000 1.16 @@ -140,7 +140,7 @@ $sql = "select num_cmt, title, content, user_name, user_mail, date_ins, pere, _num_news from comments where _num_news = $num_news - order by num_cmt desc"; + order by num_cmt"; $rqt = new query($dbh); $rqt->query($dbh, $sql) or send_sql_error($PHP_SELF, $sql, $rqt->error()); |