In PHP, which is quicker; using include(\'somefile.php\') or querying a MySQL database with a simple SELECT query to get the same information?
include(\'somefile.php\')
SELECT
Why not do it both ways and see which is faster? Both solutions are pretty trivial.