Is it possible to create an array with a settings file?
In the index.php file there it reads .ini file:
// Parse config file
$settings = parse_ini_file("settings");
E.g. Settings file looks like this:
[States]
east = "Michigan, New York, Minnesota"
Looking to create an array like so:
array('Michigan', 'New York', 'Minnesota')
parse_ini_file()returns: an associative array. See here: php.net/manual/en/function.parse-ini-file.php("Michigan", "Alaska", "Minnesota")?