I have an array that is built in the following way:
$event['10-03-2013']['0'] = "Event One";
$event['10-03-2013']['1'] = "Event Two";
$event['10-03-2013']['2'] = "Event Three";
$event['30-10-2013']['0'] = "New Event";
I want to be able to get the date and the description in a foreach loop. Any suggestions how I can do this?
Thanks