Create pagination in yii framework
问题 I want to create pagination on my page without grid-view or model. This is my controller code:- $providers = Yii::app()->db->createCommand($query)->queryAll(); $count = Yii::app()->db->createCommand($query)->queryAll(); $dataProvider = new CSqlDataProvider($query, array( 'totalItemCount' => $count, 'pagination' => array( 'pageSize' => 10, ), )); and my view code is:- <?php $this->widget('zii.widgets.grid.CGridView', array( 'id'=>'students-grid', 'dataProvider'=> $dataProvider, )); ?> But when