Skip to content Skip to sidebar Skip to footer

Charset=utf8 Not Working In My Php Page

I got a problem with my character encoding. Whenever I load a page in the browser, It shows like this: So I need to manually configure it by the browser. Thanks for your help.

Solution 1:

sounds like you don't serve your content as utf-8. do this by setting the correct header:

header('Content-type: text/html; charset=utf-8');

in addition to be really sure the browser understands, add a meta-tag:

<metahttp-equiv="Content-type"content="text/html; charset=utf-8" />

note that, depending on where the text comes from, you might have to check some other things too (database-connection, source-file-encoding, ...) - i've listed a lot of them in one of my answers to a similar question.

Solution 2:

As stated by kraikkonen85 in this comment:

Besides setting mysql_set_charset and adding utf8 setting metadata to html, another important but "unpredictable" reason is the encoding type of your PHP editor when saving. For example, if you save the php file other than encodings such as "unicode" or "ANSI", as i experienced, you may notice weird chars like squares, question marks etc.

To make sure, try "save as" method to see explictly that your php file is being saved as utf8.

it may be because your content might not utf-8 you can set utf-s by setting the header and meta

header('Content-type: text/html; charset=utf-8');


<metahttp-equiv="Content-type"content="text/html; charset=utf-8" />

Post a Comment for "Charset=utf8 Not Working In My Php Page"