0

İ 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 ?

hicay
  • 78
  • 1
  • 2
  • 8

1 Answers1

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