Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in C ...
这是代码
function db_result_to_array($result) {
$res_array = array();
for ($count=0; $row = mysql_fetch_array($result); $count++) {
$res_array[$count] = $row;
}
return $res_array;
}
所以,错误就在这一行
for ($count=0; $row = mysql_fetch_array($result); $count++)
我试过了
mysql_fetch_object()
mysql_fetch_assoc()
mysql_fetch_row()
并没有工作
我试过了
mysql_fetch_array($result, MYSQL_ASSOC)
mysql_fetch_array($result, MYSQL_NUM)
mysql_fetch_array($result, MYSQL_BOTH)
它没有用。你能帮我解决这个问题吗?