i have a problem in cakphp
i have an array ($A) and its value
Array // in $A
(
[0] => 3
[1] => 4
...
}
inside the controller:
$conditions[]=array('Room.place_id' =>$A,'Room.status'=>'1');
$this->paginate= array(
'limit' =>50,
'recursive' => 2,
'conditions' => $conditions,
);
now result is :
Array
(
[0] => Array
(
[Room] => Array
(
[id] => 1
[place_id] => 1
[type] => place
)
)
[1] => Array
(
[Room] => Array
(
[id] => 2
[place_id] => 3
)
).
...
now i want to order by (in Place id) using $A value ...
I want the first record to be the Room with [place_id] => 3 (because $a[0] = 3 )
The second record should be the Room with [place_id] => 4 (because $a[1] = 4) and so on