Server side processing accented characters
Server side processing accented characters
I have a big dataset with around 9000 records. With the DOM datasource it was really-really slow, so I've changed to server-side processing. My problem is that I have different accented characters like éáőúüöóí.
After returning json_encode($data) from PHP, I have a lot of weird characters. like:
[San ÃÂ iljan]
[Ià ¼-à »urrieq]
Do you have any idea how can I solve this? I use UTF-8 everwhere (db, file encodings, etc).
After returning json_encode($data) from PHP, I have a lot of weird characters. like:
[San ÃÂ iljan]
[Ià ¼-à »urrieq]
Do you have any idea how can I solve this? I use UTF-8 everwhere (db, file encodings, etc).
This discussion has been closed.