您当前的位置: 首页 > 学无止境 > 网站建设 网站首页网站建设
CI中的分页
发布时间:2020-01-25 14:35:18编辑:雪饮阅读()
控制器
$this->load->library("pagination");
$this->load->helper('url');
//每页显示多少条
$config["per_page"]=10;
$config["total_rows"]=100;
$config["first_link"]='首页';
$config["next_link"]='下一页';
//设定分页参数应该追加在指定的base_url,这里是当前所在的控制器/action
$config["base_url"]=site_url("welcome/index");
//分页参数位于uri路径的第几段
$config["uri_segment"]=3;
$this->pagination->initialize($config);
$links=$this->pagination->create_links();
$this->load->view("index2.html",["links"=>$links]);
视图
<html>
<head>
<title>403 Forbidden</title>
</head>
<body>
<?=$links?>
</body>
</html>
关键字词:ci,分页
上一篇:CI中的路由与伪静态、隐藏index.php入口文件
下一篇:CI中的文件上传