sql >> Database >  >> RDS >> Mysql

php multiple choice quiz maker

Dit zijn klassieke HTML-formulieren. Je hebt een formulier zoals dit:

<?php
    $row = mysql_fetch_array(mysql_queryy('select * yourtable order by rand() limit 1'),MYSQL_ASSOC);
    $question = $row['question'];
    unset($row['question']);
    shuffle($row);
?>
<form method="post" action="other_script.php?q=<?php echo $question; ?>">
    <p><?php echo $question; ?></p>
    <?php
        foreach ($row as $key => $value) {
            echo "<input type='radio' name='answer'>".$value."</input>
            ";
        }
    ?>
    <input type="submit">Submit</input>
</form>

En dan je other_script.php pagina zou er als volgt uitzien:

<?php
    $ans = mysql_result(mysql_query('select c_answer from yourtable where question = "'.url_decode($_GET['q']).'"'),0);
    if ($_POST['answer'] == $ans){
        echo "You got it right!";
    }else{
        echo "You got it wrong!";
    }
?>



  1. Beveilig uw Mongo-clusters met SSL

  2. FOUT 1305 (42000):SAVEPOINT ... bestaat niet

  3. Een inleiding tot asynchrone verwerking met Service Broker

  4. Kan MySQL FIND_IN_SET of gelijkwaardig worden gemaakt om indices te gebruiken?