Answer the question
In order to leave comments, you need to log in
What is the best way to organize search with pagination in Yii?
Good afternoon! Help to understand please. There are articles on the site, there will be a lot of them. You need to organize a search by tags, the name of the article, the text inside the news. I can't figure out if I do a search like this with pagination:
$criteria = new CDbCriteria;
$criteria->addSearchCondition('t.name', $this->name);
$pagination = new CPagination();
$pagination->pageSize = 20;
$pagination->applyLimit($criteria);
return new CActiveDataProvider($this, array(
'criteria' => $criteria,
'pagination' => $pagination
));
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question