I have the following array
$GLOBALS['raj'][0]=array('raaz',4);
$GLOBALS['raj'][1]=array('arzu',1);
$GLOBALS['raj'][2]=array('Ind',10);
$GLOBALS['raj'][3]=array('Hin',9);
the result I need is
Ind 10
Hin 9
raaz 4
arzu 1
I tried using
asort($GLOBALS['raj']);
reset($GLOBALS['raj']);
But still the array is not sorted..
think I am missing something here...
??