on my website a user can post comments and group these into categories.
eg.
category: good quotes
links: "some quote 1", "some quote 2", and so on.
so the nr of categories and comments are determined by the users.
im thinking how i should organize this in the mysql database.
i cant have one table for each category because there would be A LOT of categories.
but how could i organize this in a table?
should a category be in one column, and a comment be a row? or should it be the other way around?
but then, isnt it a bad practice to increase the nr of columns after you have defined the table?
any suggestion would be helpful!