Home > php教程 > php手册 > php连接mysql乱码解决方法

php连接mysql乱码解决方法

WBOY
Release: 2016-06-13 09:36:55
Original
837 people have browsed it

   出现乱码常见是直接连接mysql数据库教程而没设置连接查询的编码了,一般常用的是mysql_query(set names gb2312)这样大多是可以解决的,下面来看一个上面方法解决

 

  $link = mysql_connect('localhost','root',''); mysql_query("set character_set_connetion=utf8,character_set_result=utf8, character_set_client=binary",$link);

 

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 Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template