0

I have the code below and i am trying to add 'order' => 'creation_date DESC' or something similar but i cant get the right sintax (i am trying to order the results in DESC order);

$criteria = new CDbCriteria;
        $total = EmployerContract::model()->count();

        $pages = new CPagination($total);
        $pages->pageSize = 10;
        $pages->applyLimit($criteria);

        $posts = EmployerContract::model()->findAll($criteria);
saravankg
  • 909
  • 1
  • 10
  • 21
Gunnit
  • 1,064
  • 5
  • 22
  • 45

0 Answers0