$quiz = array(
"What does HTML stand for?" => array( '1' => "Home Tool Markup Language", '2' => "Hyperlinks and Text Markup Language", '3' => "Hyper Text Markup Language", '4' => "Hyper Text Manipulation Language", ), "Choose the correct HTML tag for the smallest heading:" => array('2' => "<heading>", '1' => "<h1>", '4' => "<head>", '3' => "<h6>", ), );foreach($quiz as $question => $answers) { echo $question; echo "<form>"; foreach($answers as $index => $answer) { echo <input type='radio' name=$option>".$answer."<br/>";"; } echo "</form>";"; } ?>