Page 1 of 1

how to convert unicode to chinese words

Posted: Sun Feb 15, 2004 8:13 pm
by tisa
i have one contact us problem. A user send the comment to us by mail and the system will send the copy to user too.
But i found that if the user types chinese words, the words will change to unicode automatically. when i get the comment mail, all words are unicode..

I want to find the solution. Please help me.

Thank you very much

Posted: Mon Feb 16, 2004 5:48 am
by DuFF
Are you using any headers?

If so, add this one:

Code: Select all

<?php
$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
?>

thanks

Posted: Mon Feb 16, 2004 10:06 pm
by tisa
i will try it...
thanks~~~