Ive got a series of 2 dimensional associative arrays
while(list($key , $val) = each ($results))
{
{foreach($val as $i=>$v)
print "$i = $v";
}
}
but i want to define the order that the various $i's are printed in
(not numerical/alphabetically)
arrays named
"key1_sorted_or der" = keys in the order to be printed
"key2_sorted_or der"
ive been experimeting with
while(list($key , $val) = each ($results))
{
{foreach($val as $i=>$v)
$ks=$i.'_sorted _order';
($cntr=0;cntr<c ount($ks);$cntr ++ )
{ print [$ks[$cntr]] =$results[$val[$ks[$cntr]]]
}
}
}
anyone able to help me out ?
Comment