How to append a path to PHP's include_path in .htaccess
snippet in htaccess
How to append a path to PHP's include_path in .htaccess
user6196
php_value include_path '../../includes'
How to append a path to PHP's include_path in .htaccess
user6233
set_include_path(get_include_path() . PATH_SEPARATOR . $path_to_add);