> > array[numrooms] => Array ( [3] => 2 [2] => 5 [1] => 1 )
> > I want to get a result like this:
> > 2=>5
> > 3=>2
> > 1=>1
> > ( I want the keys to stay attached to the results)
> 
> perhaps asort()?
> "This function sorts an array such that array indices maintain their
> correlation with the array elements they are associated with."

Or arsort(), which will sort them in decending order.

---John Holmes...

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to