If I have a form with a value of just "" and I submit it and echo it with PHP, I get \"\"
How can I get around this?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This is because
magic_quotes_gpcis on. This is a bad ‘feature’, designed to automatically escape incoming data for those developers who can’t learn to escape SQL input.You should disable this as soon as possible.