|
function get_level_2($category){
$sql = "select * from category where category=$category order by Id desc";
$query = $this->db->query($sql);
$rows = array();
foreach ($query->result_array() as $row){
$rows[] = $row;
}
return $rows;
}
报错:Fatal error: Call to a member function result_array() on a non-object in D:\xxxxx\system\application\models\category_model.php on line 77,category_model.php的77行就是上面的那段代码 |
|