Tuesday, March 22, 2011

HTML: set your website default language


For example, you want your website automatically displays Chinese.
In HTML:
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"/>
In PHP:
header('Content-Type: text/html; charset=gb2312');
where
gb2312 is simplified Chinese. default is UTF-8 (Unicode character)

No comments:

Post a Comment