Well I have a pagination issue on my website. http://www.realrapworld.com/media.php?page=show&type=audio if you go there you will notice is not showing in the order from newest to oldest.. which I need.
well i am not sure i understand 100% but i think your talking about the post right if so you should use a oder by clause in you sql to pull them from newest to oldest order them by date desc and should fix it for you
in the SQL query (select ... ORDER BY id ..) try to put "ASC" or "DESC" mysql_query("Select * .... ORDER BY id DESC.."); or: mysql_query("Select * .... ORDER BY id ASC.."); i don't realy remember