json_encode() wont work for me when I'm using åäö. Why? And how can I get it to work?
The php:
echo json_encode($arr);
The javascript:
var theResponse = JSON.parse(xmlHttp.responseText);
When I alert() the response, and the response contains å, ä or ö, the response is = NULL
Please, help me out...
NULLif it contains å, ä or ö. The JSON library is JSON.org/json2.js – Johan Sep 8 '09 at 14:29json_encode()only handled UTF-8 strings properly. Tryutf8_encode-ing the the string before encoding and see if that works. – Øystein Riiser Gundersen Sep 8 '09 at 14:37utf8_encodebut it did not work for me. – Johan Sep 8 '09 at 14:43utf8_encodedid work :) !!! Happy again. – Johan Sep 8 '09 at 14:48