When I tried to populate data in zend form "guru" it is returning \"guru\". can any one suggest me how to escape or remove the "" from the text field and populating form data with out "" as guru

Thanks in advance

link|improve this question

80% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Make sure you have Magic Quotes disabled in your php.ini. They are marked Deprecated in PHP5.3, and are marked for removal in PHP6 (possibly 5.4)

Use get_magic_quotes_gpc() to find out if it is enabled, and see magic_quotes_gpc option to find out how to disable.

// Are Magic Quotes enabled?
var_dump(get_magic_quotes_gpc());

If this returns true, open your php.ini and make sure this line = Off

magic_quotes_gpc = Off
link|improve this answer
Now I set magic quotes off but it giving me returning me "guru" how I can populate as original like "guru" – Guru Aug 22 '11 at 10:27
Maybe you're using htmlentities somewhere. Escaping like this is often the desired result, but if it isn't, you can use html_entity_decode() to give you "guru". php.net/manual/en/function.html-entity-decode.php – adlawson Aug 22 '11 at 10:43
feedback

use $str = str_replace(chr(132), '"', $str);

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.