私が取り組んでいるアンケート スタイル スクリプトの背後にあるロジックを理解するのに苦労しています。
データベースから質問と回答を取得する最初の部分を書きましたが、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
}
?>
助けていただければ幸いです。