I'm coding a multi-user guestbook, which means one script takes care of several guestbooks. There can be just one guestbook, or there might be thousands. More accurate I cannot say. Now, lets get to the point. I would like to know which method you would recommend storing the guestbook entries.
1) Each user has their 'own' table in database where entries are stored.
2) There is only one table in the database which is used by all users.
3) Some other method
I almost forgot to say that I use mySQL 🙂.
Thanks for the help!