I have an multi dimensional array:
$array[0] = array ( name => "Bob",
position => "Chair",
email => "[email protected]"
);
$array[1] = array ( name => "Al",
position => "",
email => "[email protected]"
);
//etc..
I want to sort it so that those whose position != "" are first, then the rest alphabetically by name... I'm not very familiar w/ sorting multidimensional arrays, could someone help me? Thanks!