I'm creating my first php app that is a blogging network. When a user signs up I want them to be able to blog under their own username and not have it be shown to anyone else. My questions is, will I create a new db for each user or just a new table? This will need to hold all the typical blogging elements to reference: title, date, post...
I have figured out the actual blogging functionality, just looking for best practices in storing possibly thousands of blogs. Thanks for any suggestions.
Blogging network - create new db or just new table?
Moderator: General Moderators
Re: Blogging network - create new db or just new table?
One table for a basic system, more tables that are used for caching if it's going to have loads of users and posts though.