member list
Application\Admin\Controller\AdminController.class.php
count();// 查询满足要求的总记录数 $Page = new \Think\Page($count,2);// 实例化分页类 传入总记录数和每页显示的记录数(25) $show = $Page->show();// 分页显示输出 // 进行分页数据查询 注意limit方法的参数要使用Page类的属性 $list = $admin->order('id')->limit($Page->firstRow.','.$Page->listRows)->select(); $this->assign('list',$list);// 赋值数据集 $this->assign('page',$show);// 赋值分页输出 $this->display(); // 输出模板 } public function add(){ $admin=D('Admin'); if(IS_POST){ if($admin->create()){ if($admin->add()){ $this->success('管理员添加成功!',U('index')); }else{ $this->error('管理员添加失败!'); } }else{ $this->error($admin->getError()); } return; } $this->display(); } }
Application\Admin\View\Admin\index.html
PHP中文网:交流群374224296