> I would like to know why PHP adds slashes to the double quote,
> single quote, and backslash characters when submitting a form.
> In particular it would be nice if the PHP manual or some other
> manual mentioned this but I could not find any official
> documentation on this issue. Why does PHP add the
> slashes in the first place? (I'm using PHP 4.0.4pl1
> and don't know if this is just a bug or whether
> it was meant to be this way).

It is meant to be this way because so many scripts out there send form
data directly to databases where these need to be escaped.  You can change
this behaviour with the magic_quotes_gpc directive in your php.in file.
See http://www.php.net/manual/en/configuration.php

-Rasmus


-- 
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