Page 1 of 1

the meta_tag charset should come first, before any utf strin

Posted: Mon Mar 01, 2010 2:43 am
by UTAKA
the meta_tag charset should come first, before any utf string appear.

template/***/index.tpl
<title>*******</title>
・・・・
<meta http-equiv='Content-Type' content='text/html; charset=utf-8' />

to

<meta http-equiv='Content-Type' content='text/html; charset=utf-8' />
・・・・
<title>******</title>

Re: the meta_tag charset should come first, before any utf strin

Posted: Mon Mar 01, 2010 8:45 am
by Thorsten
Hi,

if you look into the index.php file, you see that we send a UTF-8 header before starting the HTML output:

Code: Select all

header("Content-type: text/html; charset=utf-8");
bye
Thorsten