i posted some data using tinymce (in a symfony project).while retrieving back how can i remove html tags? strip_tags not working..
You could use strip_tags:
strip_tags('your text or variable');
It should work in symfony. Make sure that you have done everything correctly.