To be or not to be.That is a question!

---源于莎士比亚的《哈姆雷特》

导航

< 2025年4月 >
30 31 1 2 3 4 5
6 7 8 9 10 11 12
13 14 15 16 17 18 19
20 21 22 23 24 25 26
27 28 29 30 1 2 3
4 5 6 7 8 9 10

统计

codeigniter 分页类练习

controller page页:

复制代码
<?php
    class Blog extends CI_Controller{
        public function __construct(){
            parent::__construct();
            $this->load->library("table");
            $this->load->library("pagination");
        }
        public function index(){
            $config['base_url']='http://127.0.0.1/CI/index.php/blog/index';
            $config['total_rows']=$this->db->get("CI_tb")->num_rows();
            $config['per_page']=5;
            $config['num_links']=15;
            $this->pagination->initialize($config);
            // $this->load->model("blogs");
            $data['results']=$this->db->get("CI_tb",$config['per_page'],$this->uri->segment(3));
            $this->load->view("blogs",$data);
        }

    }
?>
复制代码

view page页:

复制代码
<!DOCTYPE HTML>
<html lang="en-US">
<head>
    <meta charset="UTF-8">
    <title></title>
</head>
<body>
    <h1>This is test file!</h1>
    <?php echo $this->table->generate($results); ?>
    <?php echo $this->pagination->create_links(); ?>
</body>
</html>
复制代码

 

posted on   Ijavascript  阅读(288)  评论(0编辑  收藏  举报

编辑推荐:
· 后端思维之高并发处理方案
· 理解Rust引用及其生命周期标识(下)
· 从二进制到误差:逐行拆解C语言浮点运算中的4008175468544之谜
· .NET制作智能桌面机器人:结合BotSharp智能体框架开发语音交互
· 软件产品开发中常见的10个问题及处理方法
阅读排行:
· 后端思维之高并发处理方案
· 千万级大表的优化技巧
· 在 VS Code 中,一键安装 MCP Server!
· 想让你多爱自己一些的开源计时器
· 10年+ .NET Coder 心语 ── 继承的思维:从思维模式到架构设计的深度解析
点击右上角即可分享
微信分享提示