lets say I have a couple variables
$date[]
$body[]
$source[]
and lets say $total=10 (this number changes) where total = max number of items in the array...and each date, body and source in the same array position is related...so date[1], body[1], source[1] all go together and so on.
Now, what i need to do, is sort the items in the array based on the date (most recent being 0, next recent 1, ......, oldest 10), i suppose i could use something like natsort($date) to do this, but i need to keep the relation's to the other array's....how would i go about doing this?