Sorry for the confusion....
I just redid the test database and called each entry Test1, Test2, etc. I also change the limit per page from 10 to 5 entries.
http://www.graywig.com/guestbook/guestbook.php
However, on the output page, nobody really sees the id, but the id should correspond with the Date when it comes to specific order.
Test10 is the most recent entry and this entry I would like to be the very top entry on the first page.
As of this posting, the query puts Test10 on the bottom of the first page, and it needs to be at the top of this page. Here is the query:
$result = mysql_query("SELECT * FROM Guestbook ORDER BY id DESC LIMIT ".$start.", ".$limit);
I did a db-dump and copied it here. The columns are:
id, Date, Name, Email, Message
INSERT INTO Guestbook VALUES (1, '2005-04-19 09:20:07', 'Rich', 'crash999@optonline.net', 'Test1');
INSERT INTO Guestbook VALUES (2, '2005-04-19 09:20:48', 'Rich', 'crash999@optonline.net', 'Test2');
INSERT INTO Guestbook VALUES (3, '2005-04-19 09:21:53', 'Rich', 'crash999@optonline.net', 'Test3');
INSERT INTO Guestbook VALUES (4, '2005-04-19 09:22:25', 'Rich', 'crash999@optonline.net', 'Test4');
INSERT INTO Guestbook VALUES (5, '2005-04-19 09:22:46', 'Rich', 'crash999@optonline.net', 'Test5');
INSERT INTO Guestbook VALUES (6, '2005-04-19 09:23:13', 'Rich', 'crash999@optonline.net', 'Test6');
INSERT INTO Guestbook VALUES (7, '2005-04-19 09:24:18', 'Rich', 'crash999@optonline.net', 'Test7');
INSERT INTO Guestbook VALUES (8, '2005-04-19 09:24:38', 'Rich', 'crash999@optonline.net', 'Test8');
INSERT INTO Guestbook VALUES (9, '2005-04-19 09:25:38', 'Rich', 'crash999@optonline.net', 'Test9');
INSERT INTO Guestbook VALUES (10, '2005-04-19 09:26:01', 'Rich', 'crash999@optonline.net', 'Test10');