I have a 2dimensional array and want to delete an entire first dimension entry.
so I have
$arr_stuff[0]['date']
$arr_stuff[0]['time']
$arr_stuff[0]['place']
$arr_stuff[1]['date']
$arr_stuff[1]['time']
$arr_stuff[1]['place']
$arr_stuff[2]['date']
$arr_stuff[2]['time']
$arr_stuff[2]['place']
and I want to delete all of $arr_stuff[0]. array_splice($arr_stuff,0,1) doesnt seem to do it.