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

php 连接mysql乱码解决方法

WBOY
WBOYOriginal
2016-06-13 10:08:33848browse

php教程 连接mysql教程乱码解决方法

出现乱码常见是直接连接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);

 

Statement:
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