Welcome Guest, Not a member yet? Register   Sign In
Problem with WHERE and pagination
#3

[eluser]yoelrodguez[/eluser]
my code
Data Table
$this->db->select($sql_query);
$this->db->where($campo, $value);
$q = $this->db->get($from,$per_page,$segment);
$data[“customers”]=array();
if ($q->num_rows() > 0)
{
foreach ($q->result() as $row)
{
$data[“customers”][$row->id][“id”] = $row->id;
$data[“customers”][$row->id][“nombre”] = $row->nombre;
}
}
return $data[“customers”];

Pagination:

$this->load->library(‘pagination’);
$config[‘base_url’] = base_url().‘index.php/cinmueble/index’;
$config[‘total_rows’] = $total;
$config[‘per_page’] = $per_page;
$config[‘num_links’] = $num_links;
$config[‘first_link’] = $first_link;
$config[‘last_link’] = $last_link;
$this->pagination->initialize($config);


Messages In This Thread
Problem with WHERE and pagination - by El Forum - 11-21-2012, 08:32 AM
Problem with WHERE and pagination - by El Forum - 11-21-2012, 08:53 AM
Problem with WHERE and pagination - by El Forum - 11-21-2012, 10:38 AM
Problem with WHERE and pagination - by El Forum - 11-21-2012, 11:15 AM
Problem with WHERE and pagination - by El Forum - 11-21-2012, 12:01 PM
Problem with WHERE and pagination - by El Forum - 11-22-2012, 04:42 AM
Problem with WHERE and pagination - by El Forum - 11-22-2012, 04:47 AM
Problem with WHERE and pagination - by El Forum - 11-22-2012, 08:30 AM
Problem with WHERE and pagination - by El Forum - 11-23-2012, 07:27 AM
Problem with WHERE and pagination - by El Forum - 11-23-2012, 07:44 AM
Problem with WHERE and pagination - by El Forum - 11-23-2012, 08:13 AM
Problem with WHERE and pagination - by El Forum - 11-23-2012, 08:32 AM
Problem with WHERE and pagination - by El Forum - 11-23-2012, 08:51 AM
Problem with WHERE and pagination - by El Forum - 11-23-2012, 09:46 AM
Problem with WHERE and pagination - by El Forum - 11-23-2012, 10:37 AM
Problem with WHERE and pagination - by El Forum - 11-23-2012, 10:54 AM



Theme © iAndrew 2016 - Forum software by © MyBB