I would like to order this multi-dimensional array items[] by the key 'rel'.
print_r ($items) will output:
Array(
[36] => Array
(
[id] => 36
[name] => mp4
[total_items] => 58
[rel] => 5.3015
)
[61] => Array
(
[id] => 61
[name] => mp3
[total_items] => 61
[rel] => 21.7269
)
[63] => Array
(
[id] => 63
[name] => avi
[total_items] => 43
[rel] => 2.254
)
)
and I need the rows to be: first [61] second [36] and then [63]