当前位置:Gxlcms > PHP教程 > 为啥mysql_fetch_array没有执行

为啥mysql_fetch_array没有执行

时间:2021-07-01 10:21:17 帮助过:3人阅读

为何mysql_fetch_array没有执行?
引用
error_reporting(0);
$conn=mysql_connect("localhost","root","root");//填写数据库连接信息
mysql_select_db("a1209173000");//填写数据库名
$valA = $_POST["valA"];
if($valA!=""){
$sql = "select * from table where chepai='".$valA."'";
$result=mysql_query($sql);
while($arr=mysql_fetch_array($result))
{
echo $arr["name"]."
";
}
}else{
?>

}
?>


通过在每行后面加echo输出,发现执行到 while($arr=mysql_fetch_array($result))这时里面的没有执行,哪出问题了呢, $sql正常

分享到: 更多


------解决方案--------------------
$result=mysql_query($sql);
if(mysql_error()){
echo mysql_errno() . ": " . mysql_error() . "\n";
}

看看有没有报错?
------解决方案--------------------

mysql_select_db("a1209173000");//填写数据库名
之后,加入
mysql_query('set names gbk');
这是被操作的数据与数据库默认字符集不一致造成的

人气教程排行