Php sorting a seriously multidimensional array?

You're not really sorting as much as filtering. You'll want to for through the arrays storing n/d values and comparing then unsetting when applicable.

$m = 1; $v = 0; foreach($ns as $key => $value) { foreach($value as $k2) { if($value$m'n' == $value$v'n' && $value$m'd' > $value$v'd') { unset($ns$key$m); } $m++; $v++; } } – BigDogsBarking Apr 26 '10 at 15:09 use for, not foreach. – webbiedave Apr 26 '10 at 16:18.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions