|
more often then not it's easier to use a .htaccess to set php settings (it's always good when things like register globals, session settings, etc.. are configured BEFORE the page is being executed)
php_flag <name> <value> for boolean
and php_value <name> <value> for others
|