Re: [PHP] Switching to UTF-8. Need help.

2006-03-24 Thread Andy
Subject: Re: [PHP] Switching to UTF-8. Need help. Check the HEADERS your web-server is sending. If they don't have Charset UTF-8 in there, it won't work on REAL browsers (Mozilla based) Then, for reasons known only to Microsoft, you have to use a META tag to define the Charset for IE. MS

Re: [PHP] Switching to UTF-8. Need help.

2006-03-24 Thread Jasper Bryant-Greene
PROTECTED] Cc: php-general@lists.php.net Sent: Friday, March 24, 2006 2:14 AM Subject: Re: [PHP] Switching to UTF-8. Need help. Check the HEADERS your web-server is sending. If they don't have Charset UTF-8 in there, it won't work on REAL browsers (Mozilla based) Then, for reasons known only

Re: [PHP] Switching to UTF-8. Need help.

2006-03-24 Thread Andy
@lists.php.net Sent: Friday, March 24, 2006 11:18 AM Subject: Re: [PHP] Switching to UTF-8. Need help. Is the file saved in UTF-8 encoding (the PHP script itself)? Jasper Andy wrote: This is my code: ?php $str = öüééééÉooOO; echo $str; echo br; echo utf8_encode ($str

Re: [PHP] Switching to UTF-8. Need help.

2006-03-24 Thread Jasper Bryant-Greene
[EMAIL PROTECTED] To: Andy [EMAIL PROTECTED] Cc: [EMAIL PROTECTED]; php-general@lists.php.net Sent: Friday, March 24, 2006 11:18 AM Subject: Re: [PHP] Switching to UTF-8. Need help. Is the file saved in UTF-8 encoding (the PHP script itself)? Jasper Andy wrote: This is my code: ?php $str

[PHP] Switching to UTF-8. Need help.

2006-03-23 Thread Andy
Hi to all, We are developing a multilanguage application, and slowly it seems that the Latin1(ISO 5589 1) encoding is not enough. I tried simply to convert the database and the encoding of the php to UTF-8, but I'm getting some problems. If I make an echo 'möbel, Belgien' the browser does

Re: [PHP] Switching to UTF-8. Need help.

2006-03-23 Thread Jochem Maas
Andy wrote: Hi to all, We are developing a multilanguage application, and slowly it seems that the Latin1(ISO 5589 1) encoding is not enough. I tried simply to convert the database and the encoding of the php to UTF-8, but I'm getting some problems. If I make an echo 'möbel, Belgien' the

Re: [PHP] Switching to UTF-8. Need help.

2006-03-23 Thread Rasmus Lerdorf
Andy wrote: Hi to all, We are developing a multilanguage application, and slowly it seems that the Latin1(ISO 5589 1) encoding is not enough. I tried simply to convert the database and the encoding of the php to UTF-8, but I'm getting some problems. If I make an echo 'möbel, Belgien' the

Re: [PHP] Switching to UTF-8. Need help.

2006-03-23 Thread Richard Lynch
Check the HEADERS your web-server is sending. If they don't have Charset UTF-8 in there, it won't work on REAL browsers (Mozilla based) Then, for reasons known only to Microsoft, you have to use a META tag to define the Charset for IE. MS will *ignore* the headers in favor of a heuristic