php数据数据乱码问题_PHP_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > PHP > php数据数据乱码问题

php数据数据乱码问题

 2017/6/7 5:32:19  cakin24  程序员俱乐部  我要评论(0)
  • 摘要:一介绍1、如果建立数据库时,使用的是utf8_unicode_ci,则在php程序中需要加mysql_query("setnamesutf8");2、如果建立数据库时,使用的是GBK或GB2312,则在php程序中需要加mysql_query("setnamesgbk");或mysql_query("setnamesgb2312");二代码<html><head><metahttp-equiv="Content-Type"content="text/html
  • 标签:PHP 问题 数据 乱码问题

一 介绍

1、如果建立数据库时,使用的是utf8_unicode_ci,则在php程序中需要加mysql_query("set names utf8"); 2、如果建立数据库时,使用的是GBK或GB2312,则在php程序中需要加mysql_query("set names gbk"); ?或 ?mysql_query("set names gb2312");
二 代码
class="php"><html>
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>	
<?php
$host = "127.0.0.1";
$userName = "root";
$password = "root";
$dbName = "db_test01";
$connID = mysql_connect($host, $userName, $password) or die("数据库连接失败!");
mysql_select_db($dbName, $connID);
mysql_query("set names utf8");
$sql = mysql_query('select * from tb_info');
while($result = mysql_fetch_array($sql))
{
    echo $result['title'];
}
?>
</body>
</html>
? 三 运行结果 从基础到实战
发表评论
用户名: 匿名