Re: Read ASCII file in user defined tag
Posted: Thu Apr 12, 2007 10:04 am
It's an encoding problem. If I'm right your ascii file contains chars like ä and ö. CMSms uses normally an utf-8 encoding and this one does not know this chars so you will get ? after parsing udt.Wils wrote: the åäö are displayed with ?.
You could replace special chars with his entities (ä instead ä and so other).
Maybe you can show output correctly via
Code: Select all
echo '<pre>' . $output . '</pre>';