On Fri, May 24, 2002 at 06:42:23AM -0700, Magda Danish (Unicode) wrote:
>       I'm developing an internet application for user to input
>       multi-lingual data. It works fine using internet explorer 5.x
>       and above. However, it does not work for Netscape even for
>       version 6.x.
>       
>       1. All my web pages are set the charset to UTF-8.
>       <head>
>       <meta http-equiv=Content-Type content="text/html; charset=utf-8">
>       ...
>       </head>

My friend just converted his high-profile website to using UTF-8
everywhere, and he told me that you need to specify the encoding in both
the HTTP headers and within the document for all browsers to fully "get"
that you really do want to use UTF-8.

So you need both
  Content-Type: text/html; charset=utf-8
in the headers and
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
within the HTML.

-- 
      Evan Martin
[EMAIL PROTECTED]
  http://neugierig.org

Reply via email to