PHP+MySQL5.0中文乱码解决方法
程序员文章站
2022-10-06 08:57:29
最近学习apache2+php4.4.1+mysql5.0,页面显示中文全为"???.....",在网上找了好多资料,简单解决! 数据库连接的php脚本内容: config...
最近学习apache2+php4.4.1+mysql5.0,页面显示中文全为"???.....",在网上找了好多资料,简单解决!
数据库连接的php脚本内容:
config.inc.php
<?php
//配置mysql数据库连接参数
$db = mysql_connect("localhost", "user","password");
mysql_select_db("message",$db);
//在执行sql语句之前加上下面这一行
mysql_query("set names 'gb2312'",$db);
?>
数据库连接的php脚本内容:
config.inc.php
<?php
//配置mysql数据库连接参数
$db = mysql_connect("localhost", "user","password");
mysql_select_db("message",$db);
//在执行sql语句之前加上下面这一行
mysql_query("set names 'gb2312'",$db);
?>
上一篇: 一些关于PHP的知识