My friend and I are having a little tiff on which method we should use to store information.
Here's the deal.
We're using PHP and MySQL to store information about articles... and our opinions diverge on what we should do next.
His Plan:
Store all the information (ID, Title, Author, Description, Content) inside the database and display information that way.
My Plan:
Store ID, Title, Author, and Description in database, but NOT Content and just have an external .xml file for the Content. The external file would just be included on the page with an include command (by the article ID)
We're using a backend program to edit these files... he's argues that it's faster to do it his way and "not pointless"... I say that it's slower because multiple users will be accessing the database at one time, but my way directs them to different files. Also, I think my way is safer.
Any opinions... or better alternatives?