|
Yep, all you have to do is make sure that your posts id in your database are set to integer, primary key, and auto increment. Once that's done, you just modify the $msql like so -
$msql = "SELECT * FROM posts ORDER BY post_id DESC "; // The SQL of whatever your trying to paginate
Just configure the above SQL to work as you would like it.
All the best.
|