[Solved] tag is not working in my twitter app


Twitter transmits html entities of the tag characters. If you really want PHP to write out HTML for you, try html_entity_decode:

html_entity_decode("<br>");

Gives:

<br>

See http://se1.php.net/function.html-entity-decode for more information.

Bear in mind that Twitter escapes HTML for a reason. Reverse it at your own risk.

4

solved
tag is not working in my twitter app