PHP页面使用UTF-8时中文字符全部乱码

WBOY
Release: 2016-06-23 13:01:14
Original
843 people have browsed it

使用GB2312的时候就显示正常了,但是向数据库中插入的就是空了,使用UTF-8的时候可以插入汉字,但是页面是乱码,求助

<!DOCTYPE html><html>	<head>		<meta http-equiv="Content-Type" content="text/html; charset=utf-8">	</head>	<body>	<form method="post" action="/php/insert.php">	帐号:<input type="text" name="rname"></br>	密码:<input type="password" name="rpass"></br>	姓名:<input type="text" name="name"></br>	身份证:<input type="text" name="idcard"></br>	联系电话:<input type="text" name="tel"></br>	<input type="submit" value="提交">	</form>	</body></html>
Copy after login


回复讨论(解决方案)

页码编码跟数据库编码不一致

页码编码跟数据库编码不一致

页面修改编码utf-8就显示不出来了,还没插入的时候

试试网页保存为utf8带bom的格式,看看能行吗

试试网页保存为utf8带bom的格式,看看能行吗

这个应该怎样做呢,我用的是editplus

文件-->另存为—选择“”编码”

其实用bom不是好习惯,建议还是核对一下文件编码是否统一

插入时没有执行 set names utf8; 

文件-->另存为—选择“”编码”

好的,我回去试一试

插入时没有执行 set names utf8; 

什么意思呀,不懂

执行sql插入时需要加上 mysql_query("set names utf8"); 告诉mysql用utf8编码执行。
前提是浏览器编码和表编码都是utf8 时就不会乱码了

本来就是 gbk 的内容,确偏要声明为 utf-8,不乱码才怪呢

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template