I know this has probably been covered over and over again.
I've read the manual on sort,usort, arsort, etc., and read various threads here.
But I can't seem to locate a solution to my dilemma. Or maybe I've seen it but I just don't "get" it.
I have an array of 32 arrays:
$game[1]=array($gameID,$team,$points)
$game[2]=array($gameID,$team,$points)
etc
I want to sort $game by $points.
how would I go about doing that?
Thanks.