this may seem like a simple problem but I couldn't find it in the archives.
how does one reverse the effects of htmlspecialchars?
I tried something like this:
$trans_tbl = get_html_translation_table (HTML_ENTITIES);
$trans_tbl = array_flip ($trans_tbl);
$html = strtr ($html, $trans_tbl);
but it didn't work. is there a simple way to do this?
See Question&Answers more detail:os