I wonder how to sort an array that looks like this...
Array
(
[0] => Array
(
[0] => /index.php => 67
)
[1] => Array
(
[0] => / => 1099
)
[2] => Array
(
[0] => /foretag.php => 393
)
)
I want to sort by the last value, in this case it would be 67, 1099, 393
I want to sort i desc
/Chrille