|
Hi,
I develop website on multilanguage, one language is Japanese. The content include Japanese content store on MySQL database. Unfortunately when I create the database and php script I didn't set MySQL table as UTF-8 and put charset=UTF-8 on the script.
When view website, Japanese character show well but when I view source it just like code like パートナー Thats is the same code when I see on the database. Not like real Japanese character as showing on the website.
What I want is showing real Japanese character on website or when view source. I try to put
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> on header template but it cause some character looks different like © or ™. The character show as is if I use charset=iso-8859-1
I try to put utf_encode($content) and it also doesn't work too
What should I do know?
I want to change that because I got an error interface when view website using IE6 or IE7. It just happens on Japanese language. It fix when I remove Japanese content. I guess it happens because the Japanese character doesn't apear as real japanese character on the source on database and the script read as html character.
Any help?
|