Home  >  Article  >  Backend Development  >  PHP+MySQL5.0中文乱码解决方法_php技巧

PHP+MySQL5.0中文乱码解决方法_php技巧

WBOY
WBOYOriginal
2016-05-17 09:43:58854browse

最近学习Apache2+PHP4.4.1+MySQL5.0,页面显示中文全为"???.....",在网上找了好多资料,简单解决!

数据库连接的PHP脚本内容:
config.inc.php

//配置mysql数据库连接参数
$db = mysql_connect("localhost", "user","password");
mysql_select_db("message",$db);
//在执行sql语句之前加上下面这一行 
mysql_query("SET NAMES 'gb2312'",$db);
?>

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