I have a string with HTML entities in PHP. In html source i can see the html Entities but in the output my string is without html Entities.
like :
HTML source :
<a href="google.com" >Me You</a> ?<!-- output is Me YOU -->
How can i replace
with (space) in PHP? (as well as all other HTML entities?)
I want to have this output :
<a href="google.com" >Me You</a> ?<!-- output is Me YOU -->