数据库显示不了中文 但是输出后前端可以显示出来 这是为什么?

WBOY
Release: 2016-06-20 12:41:18
Original
1251 people have browsed it

插入中文显示一堆乱码  但是把数据输出到前端后又能显示中文了    我装的wamp   应该怎么样把数据库的乱码问题解决了呢?


回复讨论(解决方案)

之前我在phpmyadmin上也遇到这个问题
是因为phpmyadmin上utf8的格式有俩种  换另一种  汉字就可以显示了
不知道你是不是这个问题 

你是在哪看到乱码了?

修改表的编码:
ALTER TABLE `表名` DEFAULT CHARACTER SET utf8 COLLATE utf8_bin
修改字段的编码:
ALTER TABLE `表名 ` CHANGE `字段名` `字段名` CHAR( 100 ) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL

在数据库里输入上面这两条sql语句试试

你是在哪看到乱码了?


数据库里面的汉字是乱码

set names latin1;

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