Website for mobile phone, unicode problem for nokia [closed]
Want to improve this question? Add开发者_C百科 details and clarify the problem by editing this post.
Closed 6 years ago.
Improve this questionİ have a website for mobile phones (not english) But i have a problem with nokia (unicode problem) my website are including php codes
how can i solve this problem with php or html or js ?Try setting the charset in the headers and in the meta tags...
<?php
header('Content-type: text/html; charset=utf-8');
?>
And...
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
精彩评论