|
发表于 2013-3-27 17:51:35
|
显示全部楼层
我将模型改了一下出错想问一下是什么原因
原模型
function get_books($num, $offset) {
$query = $this->db->get('christian_books', $num, $offset);
return $query;
}
更改后
function get_books($num, $offset) {
$query = $this->db->query("SELECT title FROM user LIMIT $num, $offset);
return $query;
} |
|