Decoding Ascii to string UTF8
I have trouble on decoding a string like !"#$%, somehow decoding with php function is not working... it might have to do something with the UTF8.
$email = explode('',$email);
foreach($email as $list)
{
if (!empty($list))
{
$string .= $this->unichr($list);
}
}
if (!empty($string)