Hi,
I have a database containing user registration information, and I'd like to provide functionality to let them alter their details.
I load a page with a form, where all the fields are pre-populated with the information from the database.
I do some validation when they submit any changed information, and if there are any problems I'd like the data they've entered to be sticky. So, I use $HTTP_POST_VARS to get what they've put in.
The problem is, whenever there's a single quote ( i.e. ' ) in a field it is automatically prepended with a backslash in the $HTTP_POST_VARS. I don't like it. Does anyone know how I can suppress this behaviour?
-p