<?php $win = array('Name'=> array('Jane Doe ', 'Nash Patel ', 'Joe Public '), 'Date'=> array('7 October 2015 ', '14 October 2014 ', '12 October 2016 ')); $dates = $win["Date"]; $names = $win["Name"]; usort($dates, "date_sort"); asort($names); var_dump($dates); Var_dump($names); function date_sort($a, $b) { return strtotime($a) - strtotime($b); }
You have javascript disabled. You will not be able to edit any code.