php向mysql中插入utf8格式的中文报错!
我的数据库全部设置成utf8编码!php代码:<html><head><title>PHPandODBCExample1</title><metahttp-equiv="...
我的数据库全部设置成utf8编码!
php代码:
<html>
<head>
<title>PHP and ODBC Example 1</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<?php
header("Content-Type: text/html;charset=utf-8");
$conn = odbc_connect(
"DRIVER={MySQL ODBC 5.3 Unicode Driver};Server=localhost;Database=my_ext", "root", "");
if ($conn) {
echo "成功连接到odbc数据源";
}
else {
echo "连接失败";
echo odbc_errormsg($conn);
}
echo "</br>";
$str_sql = "insert into person values(5,'杨雷雷','123')";
$res = odbc_exec($conn, $str_sql);
$str_sql = "select * from person";
$res = odbc_exec($conn, $str_sql);
while (odbc_fetch_row($res)) {
$id = odbc_result($res, 1);
$name = odbc_result($res, 2);
echo "{$id} {$name}";
echo "</br>";
}
odbc_close($conn);
echo "所有打开的odbc连接都已经被关闭!";
?>
</body>
</html>
也设置成了utf8!可是进行插入中文操作!一直爆出警告!!
请问该怎么解决 展开
php代码:
<html>
<head>
<title>PHP and ODBC Example 1</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
</head>
<body>
<?php
header("Content-Type: text/html;charset=utf-8");
$conn = odbc_connect(
"DRIVER={MySQL ODBC 5.3 Unicode Driver};Server=localhost;Database=my_ext", "root", "");
if ($conn) {
echo "成功连接到odbc数据源";
}
else {
echo "连接失败";
echo odbc_errormsg($conn);
}
echo "</br>";
$str_sql = "insert into person values(5,'杨雷雷','123')";
$res = odbc_exec($conn, $str_sql);
$str_sql = "select * from person";
$res = odbc_exec($conn, $str_sql);
while (odbc_fetch_row($res)) {
$id = odbc_result($res, 1);
$name = odbc_result($res, 2);
echo "{$id} {$name}";
echo "</br>";
}
odbc_close($conn);
echo "所有打开的odbc连接都已经被关闭!";
?>
</body>
</html>
也设置成了utf8!可是进行插入中文操作!一直爆出警告!!
请问该怎么解决 展开
4个回答
展开全部
在执行sql之前,设置字符编码
$res = odbc_exec($conn, 'set names utf8');
$res = odbc_exec($conn, $str_sql);
追问
你确定可以odbc_exec($conn, 'set names utf8');这么用吗
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你编辑器的编码是utf8吗?
追问
什么编译器?我直接在notepad++里面写的
追答
对啊,你notepad++那个编辑器的编码是UTF8 无BOM头的吗?
notepad++设置:点击 格式-->转为utf8无BOM编码格式
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
set names utf8
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |