On Tue, Mar 20, 2001 at 11:33:31AM +0900, Chung Ha-Nyung wrote:
> 
>  I found that when I pass the double quote(") through get(or post) method,
>  it is transformed into slash + double quote (\").
>  Although it seems useful in making SQL query, it's really annoying whenever
>  I pass the value to the other php page through get/post again.
> 
>  Can I turn off this feature?

You can turn it off in your php.ini:

magic_quotes_gpc = Off  ; magic quotes for incoming GET/POST/Cookie data

or put this line in your apache config or in a .htaccess file:

php_flag magic_quotes_gpc Off

Regards,
-- 
K. Wojas                              .~.
~  [EMAIL PROTECTED]                     / V \
~  http://wojas.vvtp.nl             /(   )\
:wq                                   ^ ^


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to