function un_htmlentities($str) {
                $trans = get_html_translation_table (HTML_ENTITIES);
                $trans = array_flip ($trans);

                $str = strtr ($str, $trans);    
                
                return ($str);
        }

> -----Original Message-----
> From: Jeroen Geusebroek [mailto:[EMAIL PROTECTED]]
> Sent: Saturday, May 19, 2001 11:46 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP] Reversing htmlspecialchars()
> 
> 
> Hi There,
> 
> How can i reverse the htmlspecialchars() functions?
> I can't seem to find a function for that.
> 
> Thanks,
> 
> Jeroen Geusebroek
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL PROTECTED]
> 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to