>백엔드 개발 >PHP 튜토리얼 >使用mysql_fetch_array()总是没结果

使用mysql_fetch_array()总是没结果

WBOY
WBOY원래의
2016-06-06 20:16:09981검색

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

回复内容:

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

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

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

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

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

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.