0

私は学校向けのこのプロジェクトに取り組んでいます。そこでは、選択したテーマについてユーザーにクイズを出すミニレッスンのWebサイトを作成しています。質問、選択肢、および回答はすべて1つの配列に含まれている必要があり、質問およびラジオボタンの選択として表示できます。私はその時点までで、それを完了するまで、現在1つだけ作業しています。私が今抱えている問題は、すべてのラジオボタンが選択可能であるということです。質問ごとに1つのラジオボタンのみを選択できるようにするにはどうすればよいですか?

これが私のコードです:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    </head>

    <body>
    <?php
$score = 0;

    //multi-dimensional arrays for questions, selections, and answers
    $questions = array(
    array('question' => 'Which is optional to making Easy Fudge?', 
        'choice 1' => 'Nuts', 
        'choice 2' => 'Condensed Milk', 
        'choice 3' => 'semi-sweet morsels', 
        'choice 4' => 'bakers chocolate', 
        'answer' => 'nuts'),
        );

    //looping through the questions with nested loops
    foreach($questions as $question){
echo $question['question'] . '<br />';  
echo '<input type="radio" name = "nuts" value="nuts" id="nuts"> ' . $question['choice 1'] . '<br />';   
echo '<input type="radio" name = "condensed milk" value="condensed milk" id="condensed milk"> ' . $question['choice 2'] . '<br />';
echo '<input type="radio" name = "semi-sweet morsels" value="semi-sweet morsels" id="semi-sweet morsels"> ' . $question['choice 3'] . '<br />';
echo '<input type="radio" name = "bakers chocolate" value="bakers chocolate" id="backers chocolate"> ' . $question['choice 4'] . '<br />';  
    }

    ?>
    </body>
    </html>
4

1 に答える 1

1

関連するすべてのラジオ ボタンに同じ名前を付けます。例:

foreach($questions as $question){
    echo $question['question'] . '<br />';  
    echo '<input type="radio" name = "nuts" value="nuts" id="nuts"> ' . $question['choice 1'] . '<br />';   
    echo '<input type="radio" name = "nuts" value="condensed milk" id="condensed_milk"> ' . $question['choice 2'] . '<br />';
    echo '<input type="radio" name = "nuts" value="semi-sweet morsels" id="semi-sweet_morsels"> ' . $question['choice 3'] . '<br />';
    echo '<input type="radio" name = "nuts" value="bakers chocolate" id="backers_chocolate"> ' . $question['choice 4'] . '<br />';  
}

さらに注意してください..有効な Id 属性にスペースを含めることはできないため、上記の例では、スペースをアンダースコアに置き換えました。

于 2013-02-19T22:05:21.967 に答える