| shimmyshack 2007-01-29, 7:24 pm |
|
On 29 Jan, 11:48, Davide Bianchi <davideyeahs...@onlyforfun.net>
wrote:
> On 2007-01-29, Taras_96 <taras...@gmail.com> wrote:
>
> the encoding is done correctly. I think that the problem could be in the
> php part if it's not handling the encoding correctly, but I've never used
> chinese character, so I'm not really sure.
>
> Have you tried looking in the php documentation about it?
>
> D.
>
> --
> Violence, rude language, excessive drinking,
> paganism. It's hard to find children's books like that these
> days.
> --Stig Morten Valstad on alt.sysadmin.recovery
what OS are you using? Windows uses ucs2 to encode characters whereas
most PHP5 functions are not even utf-8 aware let alone ucs2, so you
will have to impose restrictions or use some kind of coversion script
- checkout some of the mbstring functions in the php manual.
|