I am writing custom code to create a blog. I need the archives page to list all the blog entries by month. I cannot come up with a way to do that. I guess it should not be too tough as it is a common feature on all blogs. The table structure is (postid, posttitle, publishdate, .....)
|
|
|||
|
|
|
I'm not sure I understand the question, but if you want just numbers of all posts per month, use a query like this:
If you want all posts for a particular month:
And if you want to list all posts grouped by month on a single page, just select them sorted by |
||
|
|
|
|
Something like this pseudo-code:
I think. |
||||||
|
|
|
If your entries come from a SQL database, it's easiest to ask that to perform the sort for you using an
|
||
|
|
