I'm using the standart "esc_html" in Wordpress for insert data (textarea) to the db.
All works nice but how can I reverse the text?
For example:
I insert the text - You ready?! Let's go!
And in the db it's as I expected save it as - You ready?! Let's go!
Later, when I tried to display this text in my tooltip it's also display the text as You ready?! Let's go!
Please, I would like to know if there is any reverse for this function since I tried to use htmlspecialchars_decode() and realized it's not the same function.
Thanks!