Posted by craig.keightley on 01/29/07 12:35
i have the following array:
Array
(
[0] => Array
(
[0] => Leamore Windows Ltd
[1] => 553398833511417
[2] => 20
)
[1] => Array
(
[0] => HRPC
[1] => 920589205210538
[2] => 1
)
[2] => Array
(
[0] => Leamore Windows Ltd
[1] => 553398833511417
[2] => 2
)
)
is it possible to group the items in the array and order by name to
output the following:
Array
(
[0] => Array
(
[0] => HRPC
[1] => 920589205210538
[2] => 1
)
[1] => Array
(
[0] => Leamore Windows Ltd
[1] => 553398833511417
[2] => 22
)
)
Navigation:
[Reply to this message]
|