How can I sort an array with this information by number.
It's a 2d array, containing information like this:
Array
(
[1] => Array
(
[0] => 2
[1] => 1
[2] => 3
[3] => 1
[4] => 1
)
[0] => Array
(
[0] => http://www.extremeautofest.com
[1] => http://www.hondahookup.com
[2] => http://www.carandmodel.com
[3] => http://www.cardomain.com
[4] => http://www.importtuner.com
)
)
I want to rearrange it so that the corralating URL (like http://www.extremeautofest.com/ is to 2) is sorted by how big each one, the one with the largest number at the top. Is this possible with any of the array functions?