vote up 2 vote down star
4

I want to standardise on UTF8 on our web browser. All our databases and internet stufff is in UTF8. All our web servers SAre sending the charset=utf-8 HTTP header. However I've discovered that my changing the encoding on my Firefox (View -> Character Encoding) to something else I can enter Latin-9 character into a form and PHP just treats them as malformed UTF8.

How much do I have to worry about that? Is it possible for the user's web browser to override the utf8 charset header and send non-UTF8?

Update: Several people have suggested accept-charset on the individual forms. However I'd rather not have to change every webform. Assuming I can control the HTTP content-type header, and it's set to UTF8, do I have anything to worry about?

flag

52% accept rate

3 Answers

vote up 2 vote down

Try adding the accept-charset attribute to your form elements.

link|flag
vote up 1 vote down

Place an accept-charset="UTF-8" element on the form element, that will cause the form post to be UTF-8 despite the encoding of the page content.

link|flag
vote up 2 vote down

There is also an Accept-Charset HTTP header. I do not have any experience with this header, but it should be easy to see if it works by doing the same firefox test you did before. At least this way you wouldn't have to set it for individual form elements.

link|flag

Your Answer

Get an OpenID
or

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