Ok so this is my situation...a web application in PHP uses a "config" file for various parameters. This config file is nothing but a php file, say config.php with a global array of the form
$config[ param_name ] = param_value ;
$config[ param_name2 ] = param_value2 ;
Now I am currently writing an admin app that I want to use to control the main app. One of the things I want the admin app to be able to do is change the config values. So my use case will be something like change the value through an html form element and it should change the config.php replacing the value of the corresponding array index.
This is obviously not specific to php; but I d love to hear some ideas on how one would go about editing this file. Any ideas?
Thanks!