okay, here's what I got:
TABLE blog_entries
blog_entry_id (pk), blog_entry_title, blog_entry_body, blog_entry_date_added
TABLE blog_comments
comment_id (pk), blog_entry_id, comment_date_added, comment_name, comment_email, comment_body
I want the page to be:
Jan 19 (blog_entry_date_added)
My Blog (blog_entry_title)
This is my Blog (blog_entry_body)
comments(# of comments)
I'm having trouble with the query, getting the info. Can I run two queries in one? First one, get the info from blog_entries, the second get the total number of comments?