热搜:NVER node 开发 php

php+mysql+html页面编码解决方案

2024-07-23 13:50:01
php+mysql+html页面编码解决方案

1.html抬头需加入编码设置标签``````需要注意网页中的php放在body中...2.php编码```header("Content-type: text/html;charset=utf-8");```3.写入mysql编码在php中代码示例:```$mysqli=new mysqli("localhost","root","","xxxx");$mysqli->query("set names utf8;");```4.数据库中相关字段编码设置为“utf8”这些都搞定了编码问题就也搞定啦