Hej Bryon
There is a bug in the way the sms gateway translate danish ø
In php i use utf8_decode to get danish special char æ ø å
$message = utf8_decode($_POST);
æ Æ å Å is displayed fine
But small ø gives a blank
And big Ø gives a ¥ – yen
$message = str_replace(chr(248),’%F8′, $message);
Still gives blank instead of ø
Regards
Jan