Hi,
If I build an array with the indexes being dates, can I use Rsort or sort it in chronological order?
it might look something like-
$some_array = array( '08/02/03' => 'Some data for 8/02' , '08/05/03' => 'Some data for 8/05' , '09/12/03' => 'Some data for 09/12/03', '09/22/03' => 'Some data for 9/22');
Does anyone know a way to store dates in an array and sort them chronologically?
Thanks