How to sort an entire multi dimensional array in php based on any one of the index?
Like i have an array say $a=array('name'=>'sandep','dob'=>'06/08/1987','education'=>'undergrad'); i have data filled into this array based on the index. Now i want to sort the entire array data based on any one of the index. Say 'DOB'. Is it possible to do them in PHP?
EG: if i have thousand rows. The entire array should be a sorted one based on DOB.