Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
I don't see where you've tried to order anything. – Dave Oct 25 '12 at 14:01
I don't see any solution with the information provided. Of course you could sort using two "for" loops in the view. However this is a paginated list, so the sort should be made within the query or else the pagination will be useless. – pleasedontbelong Oct 25 '12 at 14:09

1 Answer

up vote 2 down vote accepted

In mysql you can order by specific field values, by using ORDER BY FIELD:

SELECT * FROM rooms WHERE place_id IN (3,1) ORDER BY FIELD(place_id, 3, 1);

This will order your rooms in the custom order you wanted (first those with place_id=3 then those with place_id=1).

To do it in cake:

$this->paginate= array(
   'order' => 'FIELD(Room.place_id, '.implode(',', $A).')',
   ...

I'm assuming that $A contains only numbers, otherwise you'll have to sanitize the values that go into the FIELD expression.

share|improve this answer
great .. its working fine ... thanks a lot :) before i am using this 'order' => 'FIELD(Room.place_id, '$A')', – Yogesh Saroya Oct 26 '12 at 4:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.