How do I change the property magic_quotes_gpc = On
to magic_quotes_gpc = Off
in the web.config file? It's a server with IIS, and I can not edit the PHP.ini.
I tried adding the below to the htaccess.txt file, but it doesn't work.
php_flag magic_quotes_gpc Off
php_value magic_quotes_gpc Off
This will also work (in PHP)
ini_set('magic_quotes_gpc', 'Off');