"When learning something new, what helps you most?", 2 => "If you don’t understand a topic, what do you do first?", 3 => "You remember things best when you…", 4 => "In exams, you usually prefer questions that are…", 5 => "While studying, you are more comfortable with…", 6 => "When solving problems, you usually…", 7 => "You feel confident when learning involves…", 8 => "During group study, you usually…", 9 => "You understand faster when lessons include…", 10 => "When instructions are given, you prefer them to be…", 11 => "You feel bored quickly if learning is…", 12 => "You prefer teachers who…", 13 => "While revising, you usually…", 14 => "You feel learning is effective when it is…", 15 => "When facing a difficult question, you…", 16 => "You like assignments that involve…", 17 => "You stay focused when tasks are…", 18 => "You learn better from mistakes when…", 19 => "You feel confident if learning materials are…", 20 => "Overall, you feel learning is best when it is…" ]; // Options (same pattern for all) $options = [ 'A' => 'Using diagrams, images or videos', 'B' => 'Understanding logic and steps', 'C' => 'Practicing with real examples', 'D' => 'Thinking deeply and quietly' ]; $error = ''; if ($_SERVER['REQUEST_METHOD'] === 'POST') { foreach ($questions as $qNo => $qText) { if (!isset($_POST['q'][$qNo])) { $error = "Please answer all questions."; break; } } if ($error === '') { foreach ($_POST['q'] as $qNo => $answer) { $stmt = $conn->prepare( "INSERT INTO computer_quiz_answers (attempt_id, question_no, selected_option) VALUES (?, ?, ?)" ); $stmt->bind_param("iis", $attemptId, $qNo, $answer); $stmt->execute(); $stmt->close(); } header("Location: generate_learning_pdf.php"); exit; } } ?>