I am using multisort to sort an array and keep the array "links" betwen each other intact.
array_multisort($date_array,SORT_DESC,$href_array,$body_array,$news_array);
my date string looks like this Sep 30 2002
it doesnt work because it sorts like this
Sep 30 2002
Sep 28 2002
Oct 01 2002
obviously, i want the Oct 01 2002 to appear before Sep 30 2002. how would i go about doing this, while still keeping the array "links" between each array intact?