Tag: Application Settings

Managing Application Settings in PHP

March 27, 2012 | By | Add a Comment

There are multiple ways to save application settings/configurations in PHP. You can save them in INI, XML or PHP files as well as a database table. I prefer a combination of the latter two; saving the database connection details in a PHP file and the rest in a database table.

Continue Reading