I have a PHP file with one simple echo function:
echo '????????????';
but when I access that page i get this:
????????????
Can someone help me? I also have my page encoding set to UTF-8, and I know it, because all of the browsers i used said so. I also do this before the echo function:
mb_internal_encoding('UTF-8');
What does this do? Does it help me? All I need is to be able to echo a static Japanese string.
Thanks!
I got it. I just had to set the mbstring extension settings to handle internal strings in UTF-8. Thas extension is standard with my build of PHP 5.3.0.