所以我当时使用AJAX调用从数据库中提取了10条记录。
下面是我的代码:
public function get_next_10($offset = 0)
{
$this->db->limit(15, $offset);
$query = $this->db->get("postovi");
return $query->num_rows() > 0 ? $query->result_array() : NULL;
}
我尝试过:
$this->db->order_by("name", "asc");
但它引发了错误。
答案 0 :(得分:2)
工作正常
public function get_next_10($offset = 0)
{
$this->db->limit(15, $offset);
$this->db->order_by('name', 'asc');
$query = $this->db->get("postovi");
return $query->num_rows() > 0 ? $query->result_array() : NULL;
}