-1
<div style="margin-top:10px;">
{foreach from=$aQuiz.results name=questions item=aQuestion}
<div class="clearfix quiz_result_item {if is_int($phpfox.iteration.questions/2)}row1{else}row2{/if}{if $phpfox.iteration.questions == 1} row_first{/if}{if $aQuestion.userAnswer == $aQuestion.correctAnswer} row_is_correct{else} row_is_incorrect{/if}">
<div class="quiz_result_left">
{$phpfox.iteration.questions}
</div>
<div class="quiz_result_right">
<div class="txt-dark fs-lg-3 quiz_result_question">{$aQuestion.questionText}</div>
<table><tr><th style="width:20%px;">Answer Choices</th><th>Correct</th> <th>Your Choice</th> <th>User Statistics</th></tr> </table>
<div>
<span class="txt-light">{phrase var='quiz.full_name_s_answer' full_name=$aQuestion.full_name}:</span>
<span class="txt-dark fw-500">{$aQuestion.userAnswerText}</span>
</div>
<div>
<span class="txt-light">{phrase var='quiz.correct_answer'}:</span>
<span class="txt-dark fw-500">{$aQuestion.correctAnswerText}</span>
<div class="table_left">{phrase var='quiz.answers'}:</div>
</div>
</div>
</div>
{/foreach}
</div>
이 코드는 정답과 userAnswer 만 표시하지만 질문에 대한 모든 답변에 액세스하려면 어떻게해야합니까? 모든 대답에 어떻게 액세스 할 수 있습니까? 도움을 주시면 감사하겠습니다.phpfox에서 퀴즈 모듈의 모든 대답에 어떻게 액세스합니까?