Welcome Guest, Not a member yet? Register   Sign In
Pagination automated
#11

[eluser]JoostV[/eluser]
Hi Dine,

First off, this lib is intended for use with default CI URI's, that is: not including a query string (like ?keywords=&search_type=all), so you should expect to find some problems there.

Having said that, I think the problem here is that you switch between manual sql and active record in your queries. I'm not sure if that is at all possible. I think not. This is probably why limit is not in your query.
Code:
$query = "select SQL_CALC_FOUND_ROWS * from tbl_users where 1=1 ";
// (...)
$this->db->limit($config['per_page'], $this->pagination->offset);
$sql = $this->db->query($query);

Try to write the entire query in active record format, for instance
Code:
// Set up SQL
$this->db->where("(name LIKE '%mike%' OR address LIKE '%mike%')");
$this->db->limit($config['per_page'], $this->pagination->offset);
$query = $this->db->get('tbl_users');
// Fetch results
$result = $query->num_rows() > 0 ? query->result_array() : array();


Messages In This Thread
Pagination automated - by El Forum - 07-27-2008, 12:07 PM
Pagination automated - by El Forum - 07-27-2008, 12:13 PM
Pagination automated - by El Forum - 07-27-2008, 12:39 PM
Pagination automated - by El Forum - 08-31-2008, 07:40 PM
Pagination automated - by El Forum - 09-01-2008, 12:19 AM
Pagination automated - by El Forum - 10-07-2008, 05:36 AM
Pagination automated - by El Forum - 12-21-2008, 07:05 AM
Pagination automated - by El Forum - 01-03-2009, 08:42 PM
Pagination automated - by El Forum - 05-30-2009, 10:17 AM
Pagination automated - by El Forum - 05-30-2009, 10:29 AM
Pagination automated - by El Forum - 06-01-2009, 07:43 AM
Pagination automated - by El Forum - 10-25-2009, 06:27 PM
Pagination automated - by El Forum - 01-02-2010, 06:42 AM
Pagination automated - by El Forum - 01-07-2010, 08:37 AM
Pagination automated - by El Forum - 10-31-2010, 10:02 PM
Pagination automated - by El Forum - 01-05-2011, 04:33 AM
Pagination automated - by El Forum - 02-22-2011, 02:14 AM
Pagination automated - by El Forum - 02-22-2011, 03:59 AM
Pagination automated - by El Forum - 05-10-2013, 11:42 AM
Pagination automated - by El Forum - 07-17-2013, 11:42 PM
Pagination automated - by El Forum - 01-12-2014, 12:23 PM



Theme © iAndrew 2016 - Forum software by © MyBB