Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i have a input like this

$desc = <p>\r\n test job description!</p>

i have used echo html_entity_decode(nl2br($desc),ENT_NOQUOTES,"Utf-8");

and out put becomes <p>\r\n test job description!</p>

then used echo html_entity_decode(stripslashes(nl2br($desc)),ENT_NOQUOTES,"Utf-8");

& got <p> test job description!</p>

& used echo strip_tags(html_entity_decode(stripslashes(nl2br($desc)),ENT_NOQUOTES,"Utf-8")); to get output like test job description! but the output becomes <p> test job description!</p>

what i am doing wrong here or what function i can use to get desired output test job description!

share|improve this question

1 Answer

up vote 0 down vote accepted

Your code

$desc = "&lt;p&gt;\r\n test job description!&lt;/p&gt;";
echo strip_tags(html_entity_decode(stripslashes(nl2br($desc)),ENT_NOQUOTES,"Utf-8"));

Outputs

test job description!

Either the data in your question is wrong or the code you're trying out is wrong. Double check and post again please.

share|improve this answer
i was missing "" in string – Ankit Mar 24 '12 at 6:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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