The PHP manual defines
"magic_quotes_r untime
If enabled, most functions that return data from an external
source, including databases and text files, will have quotes
escaped with a backslash "...
This term 'external source' isn't defined anywhere in the
manual! Is the data in our $_GET and $_POST variables
considered an external source? The term 'most functions'
without further explanation is most ambiguous.
If magic_quotes_gp c is set to off in the php.ini file, can
we control whether the $_GET and $_POST data is
automagically slashed using set_magic_quote s_runtime()?
or is magic_quotes_ru ntime only used for the data coming
out of our database or files and a few special uses?
Thanks for your help in sorting this confusion.
Ken
"magic_quotes_r untime
If enabled, most functions that return data from an external
source, including databases and text files, will have quotes
escaped with a backslash "...
This term 'external source' isn't defined anywhere in the
manual! Is the data in our $_GET and $_POST variables
considered an external source? The term 'most functions'
without further explanation is most ambiguous.
If magic_quotes_gp c is set to off in the php.ini file, can
we control whether the $_GET and $_POST data is
automagically slashed using set_magic_quote s_runtime()?
or is magic_quotes_ru ntime only used for the data coming
out of our database or files and a few special uses?
Thanks for your help in sorting this confusion.
Ken
Comment