I need help with a array problem I want one array to be sorted and another taking its same number order e.g.
$ar1[0] == "marmite"; $ar2[0] == 10;
$ar1[1] == "jam"; $ar2[1] == 11;
$ar1[2] == "beef"; $ar2[2] == 7;
$ar1[3] == "cabbage"; $ar2[3] == 0;
$ar1[4] == "ick"; $ar2[4] == 5;
 
sort($ar2,SORT_NUMERIC); and then make sure that the values of $ar1 are with there vote number counterparts in $ar2 so now
$ar2[0] == 0; $ar1[0] == "cabbage";
 
please help
O
Ensign Baker
HCO Officer
USS Atlantis

Reply via email to