Hi..
I've got an array with the following structure
$process[0] => array("recordID" => 1, "name" => "matt");
$process[1] => array("recordID" => 2, "name" => "john");
etc
I need the process array sorting by record ID...... I've tried doing
asort($process)
but that doesnt work - I dont know how to access the elements inside the array to sort by..... any ideas?! thanks