I am having trouble figuring out how to sort an array.
$place_1[$c] = array('name'=>substr($result2[$c],$count_cut,25),
'time'=>$result[$c],'points'=>GetPoints($c,$r));
That is what I need to sort and I need to sort it by the name. The size of the array can be anywhere from 1-16 like $place_1[1] through $place_1[16].
I tried a few different ways with the array multisort but cannot get anything but errors, I don't quite understand it exactly. If anyone could help that would be great, thank you. It doesn't mattaer which way it sorts the name by either, either A-Z or Z-A will work.