In which file can I change the value of
magic_quotes_gpc = 0
in PHP?
Thanks in advance.
The configuration file is php.ini
. The actual configuration value you're looking for is magic_quotes_gpc
On linux/unix systems it's usually
/etc/php.ini
On windows it's dependent on the installation path, so you'll have to search for it.
Beside on php.ini
you can also change magic_quotes_gpc
by using .htaccess
. Put following line on your .htaccess
:
php_value magic_quotes_gpc off