superjohnellee 0 Newbie Poster

I can't for each the two dimensional array in PHP

Inside of an array is a question and another array inside an array is an anwers

The result of questions which is $one_four_key is Array

$questions_one_four = array("What time will the festival begin?"=>array("10 A.M.","11 A.M.","1 P.M.","2 P.M."),"In line 3, the word feature is closest in meaning to _______."=>array("look","keep","include","entertain"),"What job will be done the day before the festival begins?"=>array("Making posters","Setting up the gym","Cleaning up the gym","Helping the performers"),"Who is told to talk to Ms. Braxton?"=>array("Parents","Students","Teachers","Performers"));foreach ($questions_one_four as $one_four_key => $one_four_value) { echo $one_four_key; }