vote up 0 vote down star

When making an AJAX call from the client, the server responds with Hebrew text. The PHP page that returns the result is in Windows-1255. For some reason, the result encoding is not Windows-1255, and all I see is gibberish instead of Hebrew. The result purposely contains HTML tags.

I've tried urlencoding, base64 encoding, nothing works.

Thanks!

flag

The default encoding for HTML has been ISO-8859-1 but nowadays UTF-8 is more usual. Windows-1255 is almost the same as ISO-8859-8. You must check if the server responds with the right encoding. I suggest that you change to UTF-8 and you can handle any character. – some Feb 17 at 18:51

6 Answers

vote up 1 vote down

you should also not use the string from get data, create a new srting...

link|flag
vote up 0 vote down

thank you :) helped me as well!!!

link|flag
vote up 1 vote down check

all i needed to do is put this in the respone php file

header('Content-Type: text/html; charset=windows-1255');

10x everyone!!!

link|flag
Chen, even though it works now, you'd be doing yourself a Huge favor if you converted to UTF-8 and never look back. It's the standard these days and ANSI codepages are the main reason why so many Hebrew websites suck and look like garbage on different browsers. – Assaf Feb 18 at 15:12
+1 on Assaf's suggestion... – Yuval A Feb 19 at 15:32
i prommise that from now on i'll go on utf 10q – Chen Kinnrot Mar 2 at 19:46
vote up 1 vote down

beware: AJAX works only with UTF8, so be sure to convert characters before sending them, otherwise you can get mangled characters in Javascript.

link|flag
Not true, but not using UTF-8 is asking for problems. – some Feb 17 at 19:57
vote up 3 vote down

Can't you change it so that the server return UTF-8 instead of 1255?

There's absolutely no reason these days to continue using ANSI.

link|flag
vote up 0 vote down

What encoding is the web page containing the AJAX call/display?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.