(ë, Ã, ì, ù, Ã) in normal charaters?
i use utf8 for header page, and mysql encode
|
(ë, Ã, ì, ù, Ã) in normal charaters? i use utf8 for header page, and mysql encode
| ||||
|
feedback
|
|
If you see those characters you probably just didn’t specify the character encoding properly. Because those characters are the result when an UTF-8 multi-byte string is interpreted with a single-byte encoding like ISO 8859-1 or Windows-1252. In this case | |||||
feedback
|
|
These are utf-8 encoded characters. Use utf8_decode() to convert them to normal ISO-8859-1 characters. | |||||||||||||||
feedback
|
<meta charset="UTF-8">to your pages, or useheader("Content-Type: text/html; charset=utf-8");on top of your PHP scripts. I assume this isn't actually the case yet. – mario Feb 26 '11 at 15:37