我无法理解我正在处理的调查风格脚本背后的逻辑。
我已经写了第一部分,我从数据库中提取问题和答案,但我不知道如何在 while 循环中为每个问题创建多项选择,然后存储用户选择的值。我的大脑在试图弄清楚:(
我的代码的第一部分是直截了当的,我认为:
<?php
//retreive questions from database and put into question box
$query = "SELECT `Question`, `Answer` FROM `questions`";
$question = mysql_query($query);
while($row = mysql_fetch_assoc($question)){
?>
<div id="ContainerQuestion">
<span style="Question">Question <?php echo $row['Question']; ?></span>
// Have A,B,C,D outputted as values in a checkbox and then the text after????
</div>
<?php
}
?>
我真的很感激任何帮助。