Ok, I looked and looked, but it seems I didn’t find anything. I have a display of results that are nicely paginated, but currently they are displayed in ascending order. I would like them to be displayed randomly. Here is my current controller code:
public function condos() { $this->paginate['Unit']=array( 'limit'=>9, 'contain'=>array( 'User'=>array( 'id', 'user_name', 'area_code', 'exchange', 'sln', 'email'), 'Complex'=>array('id','complex_name', 'realname', 'photo1','photo2','photo3','photo4','photo5', 'complex_website') ), 'conditions'=>array( 'Unit.type'=>array('condo', 'rentalco'), 'Unit.active'=>1) ); $data = $this->paginate('Unit'); $this->set('allcondos', $data); }
source share