Show pageOld revisionsBacklinksBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== PHP Options ====== Options for PHP may be configured by one or more of the following: * in the php.ini file, usually located at /etc/php.ini<code> magic_quotes_gpc = off </code> * in an .htaccess file for Apache * php_flag is only used for boolean values * php_value can set all types of values * ONLY if the php module is being used - will not work if you are using PHP as CGI<code> <IfModule mod_php4.c> php_value post_max_size 20971520 php_flag magic_quotes_gpc off </IfModule> </code> * inline in a php script with ini_set()<code> ini_set("magic_quotes", "off"); </code> * you can also use the dl() function to dynamically load a module at run time * http://us3.php.net/dl ===== External Links ===== * http://us2.php.net/manual/en/ini.php docs/programming/php/php_options.txt Last modified: 2008/08/03 00:25by 127.0.0.1