Hello, I'm new to PHP but have been doing perl for about 5 years. I'm building a very simple bulletin board system, and at the top level, where I display all the topics, I'd like to display the number of threads that belong to that topic.
The SQL looks like this:
select name,count(*) as topic_count from px_topics group by root_id
In fact, I'd like it to look just like the month list on this site:
Month (# of posts)
Any help is appreciated.