İ 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 ?
Asked
Active
Viewed 213 times
0

hicay
- 78
- 1
- 2
- 8
-
Which Nokia device and/or operating system? Where is the web site? – Keith Thompson Aug 06 '11 at 22:20
-
When you say "not working", what do you mean? What do you expect, and what does the phone display instead? – Craig McQueen Aug 09 '11 at 05:21
1 Answers
1
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" />

fire
- 21,383
- 17
- 79
- 114