I am working on a little project where a user submits an article to MySQL, and then PHP send the post to the screen. So far so good. Now i want to extend it to a "two level" post system, where people can comment on the articles. The case is, i dont know how to do that.
The table i use for storing articles:
TABLE: posts
id user date avatar signature post
Should i make a new row named comments in the posts table, or should i place the comments in a seperate table? one for articles, one for comments?
All help is much appreciated.