Is there a way to pass a variable to the php.ini? I want to have different include paths set for each program in different directories.
example of how I would like to do it...
Setup a config file that set $site = "site_name";
php.ini looks like...
if($site == "site_name"){
include_path = "c:\whatever";}
if($site == "site_name_something"){
include_path = "c:\whatever_something";}
else{
include_path = ;}
I was told you can use php code in the php.ini?