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

php multiple choice quiz skaber

Dette er klassiske HTML-formularer. Du har en formular som denne:

<?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>

Og derefter din other_script.php siden ville se sådan ud:

<?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. Rails 4 MySQL bigInt primære nøgleproblemer og fejl

  2. Lær, hvordan du bruger CASE-sætning i SQL

  3. MySQL - Sådan vælger du data efter strenglængde

  4. Nyttig PHP-databaseklasse