What is the reverse of htmlentities()?
I use htmlentities() to put stuff into my database ... but on my admin pages, I want to view each row WITH the html characters (I don't want a link to show up on the admin page where it's not supposed to).
What is the reverse of htmlentities()?
I use htmlentities() to put stuff into my database ... but on my admin pages, I want to view each row WITH the html characters (I don't want a link to show up on the admin page where it's not supposed to).
That would be html_ entity_decode()
Read all about about it at the link below:
link.html_entity_decode()
Thanks.