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
definitely include as long as the file isn't too big and you end up using too much memory in which case a database would be recommended