这是我试图以面向对象的形式编写的原始代码..
$posResult = mysql_query("SELECT MAX(position)+1 FROM todo");
if(mysql_num_rows($posResult))
list($position) = mysql_fetch_array($posResult);
这就是我所在的位置......我想我需要 bind_result 吗?另外,我对 mysql_fetch_array 有疑问...
if($stmt = $this->HH->Database->prepare("SELECT MAX(position)+1 FROM todo")) {
$stmt->execute();
$stmt->store_result();
if($stmt->num_rows != FALSE) {
list($position) = mysql_fetch_array($posResult);
}
}
有人可以建议如何纠正这个问题吗?