Sorry for my ignorance, but where should i put this code?kurt2000 wrote:function html_entity_decode($string)
{
$trans = get_html_translation_table(HTML_ENTITIES);
$trans = array_flip($trans);
$contents= strtr($string, $trans);
return $contents;
}
//With kind regards

Rune