Search Results

0
votes

Pros and cons of using one file for entire webpage?

Everything gatekiller mentioned + you also can't utilize late-binding. …
3
votes

What is the best way to store media files on a database?

I think storing them in the database is ok, as long as you use a good implementation. You can read this older but good article for ideas on how to keep the larger amounts of data in the database f …
3
votes

How to split data over MySQL tables

I would definately split the 'messages' table into multiple. Eg: MessageStatus Message MessageText This way if your displaying a list of items in someone inbox, you only need to sc …