Possible Duplicate:
php warning mysql_fetch_assoc
我对我的文字有一个令人难过的问题。 它总是在我的sql_fetch_array或我的sql_fetch_assoc上出现错误。 我在我的项目中多次使用了我的智慧。 我多次检查了这一错误,但我对正在发生的事情视而不见。 我的描述是否有错?
My functions aim is learning the biggest value of specified mysql field.
职能如下:
function nextIncrement($table,$field) {
$sql = mysql_query("SELECT $field FROM $table ORDER BY $field DESC LIMIT 0,1");
while($row = mysql_fetch_assoc($sql)) {
$next = $row[$field];
}
$next = (int)$next;
return $next;
}
Warning: mysql_fetch_assoc():所提供的论据不是MySQL的一种有效结果资源......