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

[PHP] Adding slashes

2003-02-19 Thread Joachim Krebs
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. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Adding slashes when magic quotes is off?

2002-07-28 Thread Leif K-Brooks
I'm making a website for a friend, and trying to do everything the right way. I want to add slashes to EGPCS values. I know how to use this, but one of the comments on the get_magic_quotes_gpc entry in the manual points out that it wouldn't work with arrays in these values - and they have a