Re: [PHP] Latin letter problem!

2007-02-21 Thread Dotan Cohen
On 20/02/07, Richard Lynch <[EMAIL PROTECTED]> wrote: PS Mozilla-based browsers want your charset in the HTTP Content-type header IE and IE-knockoff browsers want your charset in the META tags. You have to do *both* to get all browsers to play nicely. Even for mozilla-based browsers you nee

Re: [PHP] Latin letter problem!

2007-02-20 Thread Richard Lynch
PS Mozilla-based browsers want your charset in the HTTP Content-type header IE and IE-knockoff browsers want your charset in the META tags. You have to do *both* to get all browsers to play nicely. Sorry. On Tue, February 20, 2007 10:03 am, Delta Storm wrote: > Hi, > > I'm building an simple C

Re: [PHP] Latin letter problem!

2007-02-20 Thread Richard Lynch
I believe you want to send a query something like: mysql_query("SET CHARACTER SET 'utf-8'"); to convince PHP / MySQL client/server interaction to also be in UTF-8, on top of the internal storage engine storing things in UTF-8. More info about this SET stuff is at: http://dev.mysql.com/ I found t

Re: [PHP] Latin letter problem!

2007-02-20 Thread Dotan Cohen
On 20/02/07, Peter Lauri <[EMAIL PROTECTED]> wrote: How are you setting the charset of the web page? Are you using header() or using html head section to set it? First, the header() function. Then again in the tag, and a final time in the meta tag. This way cached pages and pages stored on di

RE: [PHP] Latin letter problem!

2007-02-20 Thread Peter Lauri
How are you setting the charset of the web page? Are you using header() or using html head section to set it? Best regards, Peter Lauri www.dwsasia.com - company web site www.lauri.se - personal web site www.carbonfree.org.uk - become Carbon Free -Original Message- From: Delta Storm [ma

Re: [PHP] Latin letter problem!

2007-02-20 Thread Dotan Cohen
On 20/02/07, Delta Storm <[EMAIL PROTECTED]> wrote: Hi, I'm building an simple CMS system. I have built almost everything but one thing buggs me... I have a MySQL database built for publishing news (Id,title,newsContent,timestamp). And I have a php web page that displays that content. The prob