Welcome Guest, Not a member yet? Register   Sign In
Pagination problem
#2

[eluser]ELRafael[/eluser]
Try, after the model call, echo this:
Code:
$this->db->last_query();

Ex:
Code:
//old
return   $this->db->get('books',$config['per_page'],$offset);
//new
$return = $this->db->get('books',$config['per_page'],$offset);
echo $this->db->last_query();
return $return;

See the SQL statement and check if LIMIT exists inside.

[]'s


Messages In This Thread
Pagination problem - by El Forum - 01-18-2011, 09:51 AM
Pagination problem - by El Forum - 01-18-2011, 12:14 PM
Pagination problem - by El Forum - 01-18-2011, 12:18 PM
Pagination problem - by El Forum - 01-18-2011, 12:50 PM
Pagination problem - by El Forum - 01-18-2011, 01:06 PM
Pagination problem - by El Forum - 01-18-2011, 06:43 PM
Pagination problem - by El Forum - 01-19-2011, 04:20 AM
Pagination problem - by El Forum - 01-19-2011, 04:55 AM
Pagination problem - by El Forum - 01-19-2011, 05:39 AM



Theme © iAndrew 2016 - Forum software by © MyBB