Which would perform faster?
A site that uses includes to include text files with html content
OR
A site that uses a mysql database to store html content and display when query'd?
(basically questioning if including static text is faster than mysql query)
Also, 2nd question, which would be faster
Site that stores information in XML and on the front end users can search site data, and the site uses php to parse the XML and output results.
OR
Site that stores information in mysql database and and on the front end users can search site data, and the site uses php to query the mysql db and output results.