When I tried to populate data in Zend form “guru”, it was returning \”guru\”. How can I escape or remove the “” from the text field and populating form data without “” as guru?
Share
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.
Make sure you have Magic Quotes disabled in your php.ini file. They are marked deprecated in PHP 5.3 and are marked for removal in PHP 6 (possibly 5.4).
Use
get_magic_quotes_gpc()to find out if it is enabled, and seemagic_quotes_gpcoption to find out how to disable.If this returns
true, open your php.ini file and make sure this line =Off