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

[eluser]InsiteFX[/eluser]
This code should be in your controller not your view
Code:
$topicid= $this->uri->segment(3,0);
$config['base_url'] = "/index.php/forum/viewmessages/".$topicid;
$config['total_rows'] = $reply_count;
$config['per_page'] = 10;

$this->pagination->initialize($config);

This is all that you need in your view file.
Code:
<?php echo $this->pagination->create_links(); ?>



Messages In This Thread
help with pagination - by El Forum - 06-26-2012, 04:20 AM
help with pagination - by El Forum - 06-26-2012, 08:52 AM
help with pagination - by El Forum - 06-26-2012, 11:10 PM



Theme © iAndrew 2016 - Forum software by © MyBB