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

WBOY
Release: 2016-06-13 12:45:36
Original
735 people have browsed it

php中执行包含中文字符的建表语句失败
$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里运行的话,可以成功的创建表。
不知道是怎么回事,望高手解答。

PHP MySQL
Related labels:
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