Re: [PHP] who added the damn slashes?

2002-04-20 Thread Justin French
I believe the php.ini file has magic_quote_runtime (or simular) enabled. Not much you can do unless you have control of the server (ie, you are the admin). You have everything in an array, so it's quite easy to stripslashes() on the whole array... it'd be a lot harder with individual vars.

[PHP] who added the damn slashes?

2002-04-15 Thread Jeroen Olthof
Hi, The problem: I don't use addslashes($) but somehow that is what happens to my posted data The situation: I'm building a wizard like form that read all posted data (HTTP_POST_VARS, HTTP_GET_VARS etc..) and puts it in an array that is registerd in a session. This gives me the possibility

RE: [PHP] who added the damn slashes?

2002-04-15 Thread Robert Covell
: 816.210.7145 -Original Message- From: Jeroen Olthof [mailto:[EMAIL PROTECTED]] Sent: Monday, April 15, 2002 5:42 AM To: [EMAIL PROTECTED] Subject: [PHP] who added the damn slashes? Hi, The problem: I don't use addslashes($) but somehow that is what happens to my posted data The situation