欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

php数据数据乱码问题

程序员文章站 2022-04-11 09:41:31
...

一 介绍

1、如果建立数据库时,使用的是utf8_unicode_ci,则在php程序中需要加mysql_query("set names utf8");
2、如果建立数据库时,使用的是GBK或GB2312,则在php程序中需要加mysql_query("set names gbk");  或  mysql_query("set names gb2312");
二 代码
<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>
 
三 运行结果
从基础到实战
相关标签: php 数据 乱码