还是把页面本身存成UTF8格式的比较好。

解决方案 »

  1.   

    我专门另存为了一次utf-8,依然无效。
      

  2.   

    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />一定要在 <title 之前
      

  3.   

    header("Content-Type: text/html; charset=utf-8");
      

  4.   

    header("Content-Type: text/html; charset=utf-8");
      

  5.   

    <? header("content-type:text/html; charset=utf-8"); ?>
    using this to change the format from windows into the format in utf-8change the mysql configuration
    change the my.cnfmore detail,you should view herehttp://server.chinabyte.com/428/2636428.shtml
      

  6.   

    另存为utf-8以后,再用utf-8编码打开,比如zend studio中,如果乱码则修改为正常即可。一般开发之前都要统一好用什么编码,比如utf-8,那么一开始就需保存为utf-8,然后再输入、保存、编辑都是正常的
      

  7.   

    把php.ini文件里的
    找到default_charset = "utf8"
    把前面的!去掉就可以了。
      

  8.   

    谁能具体说说<meta和header()的原理