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

Something like this in a Welcome controller:
Code:
public function index(){
   $this->page();
}

public function page( $page = 1 ){
   echo 'You are on page ' . $page;
}

Then in routes something like:


Code:
$route['(:num)'] = 'welcome/page/$1';
Reply


Messages In This Thread
Pagination on homepage - by phoenix9080 - 11-25-2017, 03:25 PM
RE: Pagination on homepage - by skunkbad - 11-25-2017, 10:13 PM
RE: Pagination on homepage - by phoenix9080 - 12-03-2017, 11:46 PM



Theme © iAndrew 2016 - Forum software by © MyBB