Load variables from external file in PHP

Adrian M. picture Adrian M. · Apr 9, 2010 · Viewed 40.7k times · Source

How can I import a variable from an external file? What I want to do is to have a configuration file in which I can write all my website settings and then to import these settings to every file, so I can set the website skin and things like that.

How can I do this?

Answer

remi bourgarel picture remi bourgarel · Apr 9, 2010

Look at this :

http://php.net/manual/en/function.parse-ini-file.php

you'll be happy :)