码迷,mamicode.com
首页 > Web开发 > 详细

ThinkPHP 分页类的使用及退出功能的实现

时间:2015-12-03 13:35:39      阅读:173      评论:0      收藏:0      [点我收藏+]

标签:

/* ThinkPHP设置编码统一:
一、数据库设置为utf8_bin
二、HTML页面设置charset=utf-8,而且检查文档编码格式是否是utf-8。phpDesigner8设置方式为“文件-》文件编码-》选中UTF-8
*/


<?php /** 这是后台index控制器 */ Class IndexAction extends CommonAction{ public function index(){ $this->display(); } Public function logout(){//退出功能 session_unset(); session_destroy(); $this->redirect(‘Admin/Login/index‘); } Public function all(){ import(‘ORG.Util.Page‘);//载入分页类 $count = M(‘user‘)->count();//计算表中数据条数 $page = new Page($count,4); //实例化分页类,并传参,每页4条数据 $limit =$page->firstRow.‘,‘.$page->listRows; $wish =M(‘user‘)->order(‘time DESC‘)->limit($limit)->select(); $this->wish = $wish; $this->page = $page->show();//模板中使用{$page}显示分页条 echo "all方法内容"; $this->display(); } Public function delete(){ $id = I(‘id‘); if( M(‘user‘)->where(array(‘id‘ => $id))->delete()){ $this->success(‘删除成功‘,U(‘Admin/Index/all‘)); }else{ $this->error(‘删除失败‘); } } }

 

ThinkPHP 分页类的使用及退出功能的实现

标签:

原文地址:http://www.cnblogs.com/xtmp/p/5015491.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!