SO am am soon going to build a blog. what I would like to know is how to do the prvious posts button at the bottom of the page with like the 1|2|3...Next|Last that type I was just wondering how it is done I know to fill the Homepage your query would be like
$sql=select * from post limit 5 order by date asc
so when the person clicks for page two how does the php handle that and what is the sql is it like
$sql=select * from post limit(5, 5) order by date asc
to fetch the next five or what? and most importantly how to you make the PHP handler