0

簡単なクイズをやってみます。すべての質問を次のような適切にフォーマットされたレイアウトで 1 ページに印刷したくありません。

質問 1
回答 1
回答 2

質問 2
回答 1
回答 2

現在、次のコードに取り組んでいます。

$get_qa = $mysqli->query("
SELECT
    a.question AS question,
    a.id AS qid,
    b.answer AS answer,
    b.qid AS aqid (related to: question id)
FROM rw_questions a
LEFT OUTER JOIN rw_qanswers b ON a.id = b.qid");

while($qa = $getqa->fetch_assoc()){
    echo $qa['question'].$qa['answer'];
}

これにより、厄介なリストが作成されます。しかし、私が一番上に書いたように、どうすればこれを改善できますか? どんな助けもクールです!foreachなどで改善する必要があると思いますか?

4

2 に答える 2

1

2 つの配列を作成し、そのうちの 1 つは 2 次元です

お気に入り:

questionId    question        answer
         1    sky has color?  blue
         1    sky has color?  red
         2    what is?        answer 1
         ....

次のように配列に保存します。

$questions[1] = "sky has color?";
$answers[1][0] = "blue";
$answers[1][1] = "red";
$questions[2] = "what is?";
$answers[2][0] = "answer 1";

php:

$questions = array();
$answers = array();

// Take every row
while($qa = $getqa->fetch_assoc()) {
    // Add questions
    // $question[1] = "sky has color?";
    $question[$qa['qid']] = $qa['question'];

    // If no answers have been set yet, init an array
    if (!is_array($answers[$qa['qid']]) {
        $answers[$qa['qid']] = array();
    }

    // Add answers
    // $answers[1][] = "blue";
    // $answers[1][] = "red";
    $answers[$qa['qid']][] = $qa['answer'];
}

次にループします:

// Loop $questions array
foreach ($questions as $qid => $question) {
    echo "<p>Question: " . $quesion . "</p>";

    // Loop $answers[questionId] array
    foreach ($answers[$qid] as $answer) {
        echo $answer . "<br />";
    }
}

この回答は改善される可能性がありますが、機能し、良いキックスタートが得られるはずです。

于 2013-07-17T13:07:54.770 に答える