I retrieve data from a MySQL database which is often in foreign languages and encoded with UTF-8. This displays fine normally but when set as the value for a textarea or text box it doesn't display correctly. Infact it looks like this:

ыкаепнрошгув

When normally it looks like this (random Russian letters):

ыкаепнрошгув

I've set the encode type in the html header as usual:

<meta http-equiv="content-type" content="text/html; charset=utf-8" />

And I've explicitly set UTF-8 encoding for the form too.

<form action='process.php' method="POST" enctype="multipart/form-data" accept-charset="UTF-8">

I can't think why it's doing this! I can copy & paste in UTF-8 encoded characters no problem. The form saves them to the DB as UTF-8. The page retrieves and displays them as UTF-8 but when I try to set a form element with encoded characters it goes fubar! Any ideas?

link|improve this question
What does the page source look like for the textarea? – Artelius Jun 1 '10 at 12:55
1  
Text area page source looks like: <input type="text" style="border:none" name="editbox" id="tbleditbox" value=""> Value is set using AJAX jQuery like: document.getElementById("tbleditbox").innerHTML=value; – Matt Jun 1 '10 at 13:30
After more research. Looks like the problem is displaying html elements (UTF8) in text boxes. Is there anyway to encode these UTF characters into something more textbox friendly? – Matt Jun 1 '10 at 15:10
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.