学习ThinkPHP3.2.2:video15,分页

1、D:\wamp\www\wish\APP\Admin\Controller\MsgManageController.class.php

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class  MsgManageController  extends  CommonController {
 
     Public  function  index(){
         
         $count  = M( 'wish' )-> count ();
         $page  new  \Think\Page( $count , 10);
 
         $limit  $page ->firstRow .  ','  $page ->listRows;
         $wish  = M( 'wish' )->order( 'time desc' )->limit( $limit )->select();
 
         $this ->page =  $page ->show();
         $this ->wish =  $wish ;
         $this ->display();
     }
 
     
}


2、D:\wamp\www\wish\APP\Admin\View\MsgManage_index.html

1
2
3
4
5
6
7
8
9
10
11
12
13
14
< foreach  name= 'wish'  item= 'v' >
     <tr>
         <td>{ $v .id}</td>
         <td>{ $v .username}</td>
         <td>{ $v .content|replace_phiz=###}</td>
         <td>{ $v .time| date = 'y-m-d h:i' ,###}</td>
         <td><a href= "{:U('Admin/MsgManage/del')}" >删除</a></td>
     </tr>
</ foreach >
<tr>
     <td colspan= "5"  align= "center" >
         { $page }
     </td>
</tr>


3、浏览 http://localhost/wish/index.php/Admin/MsgManage/index

学习ThinkPHP3.2.2:video15,分页_第1张图片

你可能感兴趣的:(ThinkPHP3.2.2)