instead of actually stating the index in the array, why not just add the data to the next index
$event[] = array("title"=>"Event1", "date"=>"11/03/04");
then, you will have all the events
$event[0]
$event[1]
$event[2]
remembering that arrays start at 0
when you delete and array unset($event[1]), array 2 will now be array 1