Welcome Guest, Not a member yet? Register   Sign In
pagination doesn't work
#6

(03-22-2015, 10:22 AM)chouwech Wrote: no i still have the problem. i'm using a template library. could you remote to my pc please?

the result after using var_dump:


Quote:array (size=2)
 'result' =>
   array (size=0)
     empty
 'link' => string '&nbsp;<strong>1</strong>&nbsp;<a href="http://localhost/ci_pmanagement/admin/index.php/user/page/1">2</a>&nbsp;<a href="http://localhost/ci_pmanagement/admin/index.php/user/page/1">&gt;</a>&nbsp;' (length=195)
I can't remote to your PC, but from the var_dump you have, there is nothing in your result array. That means that your get_all() function in your model is not returning any rows.

Code:
$config['per_page'] = 1;
$page = ($this->uri->segment(4))?$this->uri->segment(4):0;

$data['result'] = $this->user_model->get_all($config['per_page'], $page);

public function get_all($limit,$start){
    return $this->db->get('users', $limit, $start)->result_array();
}
Use var_dump to see what's in the $page variable just before you call the get_all() function, and use var_dump to see what's in the $data['result'] array when the get_all() function returns.
Hey, don't work without a PHP debugger. Several free IDEs have this features built in. Two are NetBeans and CodeLobster. Without a debugger, it's like you're driving with a blindfold on -- you are going to crash!
Reply


Messages In This Thread
pagination doesn't work - by chouwech - 03-21-2015, 11:39 AM
RE: pagination doesn't work - by RobertSF - 03-21-2015, 08:34 PM
RE: pagination doesn't work - by chouwech - 03-22-2015, 01:24 AM
RE: pagination doesn't work - by RobertSF - 03-22-2015, 07:49 AM
RE: pagination doesn't work - by chouwech - 03-22-2015, 10:22 AM
RE: pagination doesn't work - by RobertSF - 03-22-2015, 11:55 AM
RE: pagination doesn't work - by chouwech - 03-22-2015, 01:18 PM
RE: pagination doesn't work - by phoenixcoded - 03-25-2015, 05:43 AM
RE: pagination doesn't work - by RobertSF - 03-25-2015, 07:21 AM



Theme © iAndrew 2016 - Forum software by © MyBB