Re: [PHP] Adding slashes

2003-02-19 Thread Larry E. Ullman
PHP seems to automatically be escaping quotes on my $_POST variables. magic_quotes_gpc is set to On in your php.ini file. You can use stripslashes()to undo its effect or alter this behavior on a script-by-script basis using ini_set(). Larry -- PHP General Mailing List (http://www.php.net/) T

Re: [PHP] Adding slashes

2003-02-19 Thread Larry Rosenman
--On Wednesday, February 19, 2003 19:42:00 + Joachim Krebs <[EMAIL PROTECTED]> wrote: PHP seems to automatically be escaping quotes on my $_POST variables. Am I talking rubbish, or is this some setting? It is annoying me greatly. check the smart_quotes_gpc stuff. -- PHP General Mailing