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

[eluser]Senthilguru[/eluser]
Hi dude,

try this code ....

Code:
$this->load->library('pagination');

$config['base_url'] = $this->data['base']."index.php/manager/cart/index";
$config['total_rows'] = 200;
$config['per_page'] = 20;

$this->pagination->initialize($config);
        
$this->data['pagination']= $this->pagination->create_links();
echo $this->data['pagination'];
        
exit;

this one is showing the pagination links...i hope the problem is here

Code:
$counter=$this->mncard->count();
$config['total_rows'] = $counter;

pls check this....i hope it will work..

Cheers
senthilguru.e
cogzideltemplates.com


Messages In This Thread
pagination problem - by El Forum - 12-23-2008, 08:18 AM
pagination problem - by El Forum - 12-23-2008, 11:51 PM



Theme © iAndrew 2016 - Forum software by © MyBB