i have this situation:
print_r($key);echo'<br>';
foreach($value as $test){
print_r(count($test));echo'<br>';
}
echo'<br>';
witch returns:
Jerome Frier
2
5
1
Luke Saora
5
4
6
Tracy Edion
6
1
4
what i am aiming for is to display the maximum value for each name, like this:
Jerome Frier Luke Saora Tracy Edion
6 5 6
basically taking the maximum value for each name comparing each row..
does this sound confuse... :)
thanks