>     I just struggled with quoting in php3 and php4. Traditional
>     old-style raw data would be nice to have but using
>     set_magic_quotes_runtime (false) doesn't help. Should that
>     turn it off anyway?

It is likely already off.  magic_quotes_runtime is a legacy feature nobody
uses anymore.

>     Another thing not documented to me is get_magic_quotes_gpc (). What
>     does the gpc part mean?

magic_quotes_gpc is likely what you are after.  GPC means GET/POST/COOKIE
which is actually EGPCS these days (Environment, GET, POST, Cookie,
Server).  This cannot be turned off in your script because it operates on
the data before your script is called.  You can check if it is on using
that function and treat the data accordingly.

-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