How can I reorganize an array by date so that all of the dates will be in order by whichever date came first when I use foreach() ?
Here is my array:
$events = array(
"03/06/2016" => array("Random Data 1","Random Data 2"),
"02/15/2016" => array("Random Data 1","Random Data 2"),
"03/07/2016" => array("Random Data 1","Random Data 2")
);