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!