Home > Backend Development > PHP Tutorial > php中执行包含中文字符的建表语句失败

php中执行包含中文字符的建表语句失败

WBOY
Release: 2016-06-23 14:08:27
Original
922 people have browsed it

$conn = mysql_connect("localhost","root","");
if($conn){
mysql_select_db("test",$conn);
$sql = "create table user

id int(5) not null auto_increment primary key,
name char(10) not null default '',
password char(12) not null default '',
age int(3) not null default 0,
sex char(10) not null default '男',
mail char(50) not null default '',
degree char(10) not null default ''
);";
$do = mysql_query($sql,$conn);
if($do){
echo "操作成功";
}
else{
echo "操作失败";
}
}else{
echo "连接服务器出错";
}
执行以上代码,返回“操作失败”。自己测试了一下,发现是中文字符的问题,也就是sex字段默认值为‘男’这里出了问题。但是如果把$sql里的语句单独在cmd里运行的话,可以成功的创建表。
不知道是怎么回事,望高手解答。


回复讨论(解决方案)

字符集问题
连接数据库后,先执行
mysql_query('set names ???'); // ??? 为你的程序文件的编码(如果是 utf-8 的话应写作 utf8)

建表语句后面加上 DEFAULT CHARSET=gbk 

source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template