无法理解什么是错的

时间:2014-08-12 21:14:33

标签: php mysql

我有一个从表中检索一些数据并回显它的函数。功能是......

function myfunction(){
  global $db,$con;
  $qry = "SELECT field1 FROM tbl ORDER BY fieldId ASC";
  mysql_select_db($db,$con);
  $qry_res = mysql_query($qry,$con);
  $numRow = mysql_num_rows($qry_res);

  if($numRow > 0){
      while ($res = mysql_fetch_array($qry_res)) {
          echo '$res['field1']';
      }        
  } else {
      echo 'nothing found';
  }

}

我的桌子不是空的。

上述功能发出警告Warning: mysql_num_rows() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\iktt\app\_include\db\functions.php on line 70

无法找到问题。我该怎么办?

0 个答案:

没有答案