Mysql
 sql >> Database >  >> RDS >> Mysql

Selezione di domande casuali dal database MySQL; risposta corretta incasinata

Quando poni la tua domanda all'utente, una domanda viene selezionata casualmente dal database.

Quindi, l'utente invia il modulo, un'altra domanda viene selezionata casualmente ed è la domanda che stai utilizzando per verificare la risposta, invece della domanda che hai posto all'utente.

Devi aggiungere un input nascosto nel tuo modulo, che contiene l'id della domanda

<input type="hidden" name="question_id" value="<?php echo $question_id ?>" />

E poi, quando controlli la risposta, assicurati di recuperare la domanda giusta dal database

Il codice sarebbe simile a questo

<?php

// Check user answer for previous question
if (isset($_POST['submit'])) {   
    // Retrieve the id of the question you asked
    $previous_question_id = (int) $_POST['question_id']; // cast to integer to prevent sql injection.

    // Query database
    $get_question = "SELECT * from questions_table where id = $previous_question_id";
    $result_get_question = mysqli_query($conn, $get_question);
    $row_get_question = mysqli_fetch_array($result_get_question);

    // Assign database response to variables
    $correct = $row_get_question['correct'];
    $selected_radio = $_POST['response'];

    if ($selected_radio == $correct)
        echo "THAT ANSWER IS CORRECT";
    else
        echo "THAT ANSWER IS WRONG!";
}


// Load new question to ask to the user
$get_question = "SELECT * from questions_table order by rand() limit 1";
$result_get_question = mysqli_query($conn,$get_question);
$row_get_question = mysqli_fetch_array($result_get_question);  

// assign thing we want to print in the template to variable
$question_id = $row_get_question['question_id'];
$question = $row_get_question['question'];
$a1 = $row_get_question['a1'];
$a2 = $row_get_question['a2'];
$a3 = $row_get_question['a3'];
$a4 = $row_get_question['a4'];

?>

<PASTE YOUR TEMPLATE HERE>