每页一个测验项目(php / mysql测验程序)

时间:2012-08-27 04:14:16

标签: php mysql

我目前正在使用PHP / mySQL进行测验程序(我第一次实际使用它们)。

到目前为止,我正在努力使其在mySQL表中正常运行,为此我将所有问题都放在一个测验的一页上。但是,现在我希望每页只能提出一个问题,然后通过一次提交一个答案来取得进展。

我的问题选择在测验中的方式可能有点令人困惑。它们都有一个“quiz_id”列,对应于它们所在的测验。测验有一个“长度”列,用于指定实际有多少问题。因此,对应的“quiz_id”可能会出现比测验中实际更多的问题。我随机选择将包含哪些问题的方式是“$ question =”SELECT * FROM questions WHERE quiz ='$ id'ORDER BY rand()LIMIT $ length“;”。

现在我在每页只提出一个问题时遇到了很多麻烦。这是因为每次进展时,只要我们没有达到$ length长度的问题限制,就需要选择下一个随机问题。计数器还需要增加,以便跟踪您所处的数字问题,数量($ length)。我不确定我是否需要两个独立的动作脚本..一个用于开始测验,然后一个用于在问题之间进行。

这是我的quiz.php页面(任何测验的起始页面):

<?php
// initialize the mysql data
$connect = mysql_connect('localhost', 'root', '');
$select_db = mysql_select_db('mysql');

// define the id and length from url
$id = mysql_real_escape_string($_GET['id']);
$length = mysql_real_escape_string($_GET['length']);

// query quiz table for all columns
$query_quiz = "SELECT * FROM quizzes WHERE id = '$id' LIMIT 1";

// if quiz query fails
if(!$query_quiz_result = mysql_query($query_quiz)) 
    { 
        die("Couldn't run quiz query"); 
    } 

// fetch whole array of quiz info
$quiz = mysql_fetch_array($query_quiz_result);



//query question table for all columns
$question = "SELECT * FROM questions WHERE quiz = '$id' ORDER BY  rand() LIMIT $length";
$q_result = mysql_query($question) or die ("couldn't run questions query");


// store queried questions as an array to pass via session variables
$q_array = array();
while($row = mysql_fetch_assoc($q_result))
{
    $q_array[] = $row;
}


session_start();
$_SESSION['quiz'] = $id;
$_SESSION['questions'] = $q_array;
$_SESSION['length'] = $length;
?>

<html>
  <head>
    <title>Quiz <?php echo mysql_real_escape_string($_GET['id']);?></title>
    <link href="css/bootstrap.min.css" rel="stylesheet">
  </head>
  <body>
    <div id="container" style="margin-left: 30px;">


<!-- create the header using the quiz id and name -->
<h1 style="text-align: center;">Quiz <?php echo $quiz['id'] ?>: <?php echo $quiz['name'] ?></h1>

<hr />

<h4>This quiz will have a total of <?php echo $length?> questions.</h4>

<button onClick="parent.location='start.php'">Begin Quiz</button>

    </div>
    <script src="js/bootstrap.min.js"></script>
  </body>
</html>

这是我的start.php页面..不确定我是否可以将这一页用于所有问题,或者我是否需要一个单独的操作页面,一旦测验开始并且你正在超越#1? / p>

<?php
// continue the session
session_start();

// initialize the mysql data
$connect = mysql_connect('localhost', 'root', '');
$select_db = mysql_select_db('mysql');


$quiz_id = $_SESSION['quiz'];
$length = $_SESSION['length'];
$_SESSION['questions_array'] = $_SESSION['questions'];
$current_question = array_shift($_SESSION['questions_array']);
$_SESSION['counter'] = 1;

$counter = $_SESSION['counter'];
?>

<html>
  <head>
    <title>Quiz <?php echo mysql_real_escape_string($_GET['id']);?></title>
    <link href="css/bootstrap.min.css" rel="stylesheet">
  </head>
  <body>
    <div id="container" style="margin-left: 30px;">

<h3>Question <?php echo $counter ?> of <?php echo $length ?></h3>

<hr />

<h4><?php echo $current_question['prompt']?></h4>

<?php
// define query for answers for each question
    $answers = 'SELECT `prompt` FROM `answers` WHERE `quiz` = '.$quiz_id.' AND `question` = '.$current_question['id'].'';

    //if failed
    if(!$answers_result = mysql_query($answers)){
        die("Couldn't run answers query");
    }
    ?>

        <p style="margin-left: 50px;">
        <?php

    // if question type is "multiple choice", loop through answer choices and print them as options
    if ($current_question['if_short_answer'] == 0) {
        // loop through rows of answer choices
        while($a_row = mysql_fetch_array($answers_result))
        {
            // print each answer choice
            ?>
            <input type='radio' name='question_<?php echo $current_question['id']; ?>' value='<?php echo $a_row['prompt']?>'><?php echo $a_row['prompt']?>
            <br />

        <?php
        }
        echo "</p>";
    }

    // if question type is "short answer", create text box
    elseif ($current_question['if_short_answer'] == 1) {
        ?>
        <input type="text" name="question_<?php echo $current_question['id']; ?>" /><br />
    </p>

    <?php
    } ?>


<?php
if ($counter >= 1) { ?>
<button onClick="parent.location='next.php'">Next Question</button>
<?php
}

else { ?>
    <button onClick="parent.location='start.php'">Begin Quiz</button>
<?php
}
?>

    </div>
    <script src="js/bootstrap.min.js"></script>
  </body>
</html>

如果这是一个非常模糊或长期的问题,我道歉。我现在已经迷失了自己,并且不确定如何继续。基本上我要问的是:我怎么能每页只提出一个问题,通过随机问题进行直到达到$ length的限制,然后在结尾处的“提交测验”按钮会导致得分页面?在整个过程中,“下一个问题”按钮需要存储用户对当前问题的输入。

我基本上需要编写脚本来指导从一个问题进展到下一个问题。

谢谢!

2 个答案:

答案 0 :(得分:2)

您只需要从数据库中获取所有问题,并使用jquery show()/ hide()方法一次只显示一个问题。

我在这里为您的要求编写了示例脚本。

http://www.smarttutorials.net/responsive-quiz-application-using-php-mysql-jquery-ajax-and-twitter-bootstrap/

答案 1 :(得分:0)

首先,你要在每个页面上重新创建$ q_array,这样它才会包含最后显示的问题

if(isset($_SESSION['questions']))
{
   $_SESSION['questions']+= ", $question_id";       
}

在选择查询中,您应该省略已经显示在数组中的问题。