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

使用mysql_fetch_array()总是没结果

程序员文章站 2024-01-23 13:55:40
...
  代码如下:
    if (!$con)
      {die('Could not connect: ' . mysql_error());}
      else{ echo  "nice"."
";} mysql_select_db("test", $con); echo"get the databse"."
"; $result =mysql_query("select * from hat_province");echo"get the table"."
"; while($row = mysql_fetch_array($result)) { echo $row['id'] . " " . $row['province']; echo "
"; } 在while($row = mysql_fetch_array($result))这里总是停住出不了结果,请问到底为什么出不了结果

回复内容:

  代码如下:
    if (!$con)
      {die('Could not connect: ' . mysql_error());}
      else{ echo  "nice"."
";} mysql_select_db("test", $con); echo"get the databse"."
"; $result =mysql_query("select * from hat_province");echo"get the table"."
"; while($row = mysql_fetch_array($result)) { echo $row['id'] . " " . $row['province']; echo "
"; } 在while($row = mysql_fetch_array($result))这里总是停住出不了结果,请问到底为什么出不了结果

确认你的数据库链接正常后,将while循环放到

if($result){
    while(){
        
    }
}else{
    exit('have no data!');
}

调试下,看为什么停住,应该很容易调试出来问题的。

用pdo或者mysqli吧,别再用mysql_开头的函数了

相关标签: php mysql