Forum Moderators: coopster
When I shift from website A to website B, I have to modify my include path (from A to B) in php.ini
Is there a way to have multiple path in php.ini or may be a command in .htaccess so that each website have its independant include_path.
Thanks
PHP_INI_ALL, which means the entry can be set anywhere, including a per-directory override file such as
.htaccess. You can also set it in your script using ini_set() [php.net] or set_include_path() [php.net].