A method of _php for YII implementation-Example

Source: Internet
Author: User

This paper introduces the method of implementing the pagination with the example code, which is used for the reference of the friend of Yii, the code is as follows:

1. Controller Part code:

Public Function Actiontest () 
{ 
$criteria =new Cdbcriteria; 
$criteria->order= ' id DESC '; 
$count =user::model ()->count ($criteria); 
$pager =new cpagination ($count); 
$pager->pagesize=10; 
$pager->applylimit ($criteria); 
$userList =user::model ()->findall ($criteria); 
$this->render (' Test ', Array (' list ' => $userList, ' pages ' => $pager) 
} 

2. View Section Code:

<?php 
foreach ($list as $o) 
{ 
echo $o->username. ' <br/> '; 
echo $o->id. ' <br/> '; 
} 
$this->widget (' Clinkpager ', Array ( 
' header ' => ', 
' Firstpagelabel ' => ' home '), 
' Lastpagelabel ' => ' last ', 
' Prevpagelabel ' => ' prev ', 
' Nextpagelabel ' => ' next page ', 
' pages ' => $ Pages, 
' Maxbuttoncount ' =>13 
) 
; 
? >

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.