PHP Pagination

I’m nearing 10 articles on my blog…I told myself when I got to 11, I’d implement pagination to split up the results (10 per page). I should be able to handle the pagination myself…I’m curious how you all set up your page URLs? E.g. do you do something like the following?

blog/index.php?page=1
blog/page/1

I don’t want search engines having trouble crawling or anything like that. I don’t know the standard that people use. I can use Apache easily enough to modify the URL if needed…I was going to use $_GET and do ?page=2 to pull more results or something along those lines and modify the URL as needed. Is there a better way?

This topic was automatically closed 91 days after the last reply. New replies are no longer allowed.