Welcome Guest, Not a member yet? Register   Sign In
Pagination Probelm
#2

[eluser]Atharva[/eluser]
You are selecting all records from database, so naturally it will show all records! You need to limit the records your query returns using sql LIMIT.
Code:
$query = "select * from table LIMIT $offset, $perpage";

where $offset = $this->uri->segment(4,0);
and $perpage = 5 ;// number of records you want to show

you are also missing $config['uri_segment'] = 4;


Messages In This Thread
Pagination Probelm - by El Forum - 04-28-2011, 07:09 PM
Pagination Probelm - by El Forum - 04-29-2011, 05:14 AM



Theme © iAndrew 2016 - Forum software by © MyBB