在线考试系统中不时保存给定的答案

时间:2016-12-02 12:35:23

标签: php local-storage session-variables

我正在用php开发一个在线考试系统。我设计了一个问题库类型的东西,以便在考试中每个学生从问题库中获得随机问题。基本上这意味着,如果我有100个问题,那么我可以随机抽取60个问题。而且他们随机抽出。

问题是当用户刷新页面时,他们每次都会得到新的随机问题。我试图在HTML5 localStorage中存储问题以及给定的答案。因此,希望从本地存储加载而不是在每次刷新页面时从DB查询。

然后我意识到php是服务器端,当页面刷新时我无法从localStorage加载到php脚本。有些文章说使用ajax。但是当我按下刷新按钮或F5时,我无法弄清楚如何将数据加载到同一页面。 (是的,我试过onbeforeunload)

继承了我作为解决方案所做的工作。我已将已加载的问题保存到$ _SESSION并访问该问题以便在刷新时保留相同的问题。

我目前遇到的问题虽然这可以保留问题,但无法保存已标记的答案,如果用户意外关闭了窗口,他们就无法继续停止。

有什么想法吗?如果你想查看我的代码,请告诉我。 谢谢。

更新这是我的代码

    <?php if($_GET['exam_id']!="")
{
    $e_id=decrypt_string($_GET['exam_id']);
    $query_p_exam=mysqli_fetch_array(mysqli_query($conn,"select * from exam where e_id='".$e_id."'"));
    $category_id=$query_p_exam['category_id'];
    $subcategory_id=$query_p_exam['subcategory_id'];
    $subject_id=$query_p_exam['subject_id'];
    $exam_name=$query_p_exam['exam_name'];
    $exam_duration=$query_p_exam['exam_duration'];
    $neg_mark_status=$query_p_exam['neg_mark_status'];
    $negative_marks=$query_p_exam['negative_marks'];
    $question_limit = $query_p_exam['question_limit'];
    //echo $question_limit;
}
?>
<div class="main-content">  
<br>
<div class="container-fluid padded">
<div class="container-fluid padded">


        <div class="row-fluid">
            <div class="span8">
                <div class="box">
                    <div class="box-header">
                        <span class="title"><i class="icon-reorder"></i>&nbsp;Questions</span>
                    </div>
                    <div class="box-content scrollable" style="max-height: 500px; overflow-y: auto">
                        <div class="box-section news with-icons">
                            <form method='post' id='quiz_form' action="main_result.php">
                                        <table style="width:100%;vertical-align:top"  class="table table-normal">
                                            <tr>
                                                <td style="vertical-align:top">                     
                                                    <?php 
                                                    if($_SESSION["rows"]){

                                                    $tempArray = $_SESSION["rows"];
                                                    //var_dump($tempArray);

                                                    $total_querstion= $question_limit;
                                                    $timeduration=60000*$query_exam_Name['duration'];
                                                    $i=1;
                                                    $m_e_id=1;

                                                    foreach($tempArray as $result){
                                                        $rows[] = $result;

                                                    ?>

                                                    <!-- DISPLAY QUESTION BEGINS -->
                                                    <div <?php if($i==1){}else{echo 'style="display: none;"';}?> id="<?php echo $m_e_id;?>_<?php echo $i;?>" class="display_question">
                                                    <div class="bradcome-menu qu-pa">
                                                    <div class="col-md-6"> <span class="question"> Question No. <?php echo $i;?></span></div>
                                                    </div>
                                                    <h4 class="quction"><p><?php echo $result['question'];?></p></h4>

                                                    <?php if($result['typeofquestion']=='Single'){?>
                                                    <table class="answeers" border="0" width="100%">                    
                                                    <tbody>
                                                    <tr>
                                                    <td style="width:10px"><input name="radio_<?php echo $result['q_id'];?>" value="A" id="" type="radio"></td>
                                                    <td><?php echo $result['option_a'];?>                       </td>
                                                    </tr>
                                                    <tr>
                                                    <td>
                                                    <input name="radio_<?php echo $result['q_id'];?>" value="B" id="" type="radio"></td><td>
                                                    <?php echo $result['option_b'];?>                        </td>
                                                    </tr>
                                                    <tr>
                                                    <td>
                                                    <input name="radio_<?php echo $result['q_id'];?>" value="C" id="" type="radio"></td><td>
                                                    <?php echo $result['option_c'];?>                        </td>
                                                    </tr>
                                                    <tr>
                                                    <td>
                                                    <input name="radio_<?php echo $result['q_id'];?>" value="D" id="" type="radio"></td><td>
                                                    <?php echo $result['option_d'];?>                        </td>
                                                    </tr>
                                                    </tbody>
                                                    </table>
                                                    <?php }
                                                    if($result['typeofquestion']=='Multiple'){?>
                                                    <table class="answeers" border="0" width="100%">
                                                    <tbody><tr>
                                                    <td style="width:10px">
                                                    <input name="checkbox_A_<?php echo $result['q_id'];?>" value="A" id="" type="checkbox"></td><td>
                                                    <?php echo $result['option_a'];?>                        </td>
                                                    </tr>
                                                    <tr>
                                                    <td>
                                                    <input name="checkbox_B_<?php echo $result['q_id'];?>" value="B" id="" type="checkbox"></td><td>
                                                    <?php echo $result['option_b'];?>                       </td>
                                                    </tr>
                                                    <tr>
                                                    <td>
                                                    <input name="checkbox_C_<?php echo $result['q_id'];?>" value="C" id="" type="checkbox"></td><td>
                                                    <?php echo $result['option_c'];?>                      </td>
                                                    </tr>
                                                    <tr>
                                                    <td>
                                                    <input name="checkbox_D_<?php echo $result['q_id'];?>" value="D" id="" type="checkbox"></td><td>
                                                    <?php echo $result['option_d'];?>                       </td>
                                                    </tr>
                                                    </tbody>
                                                    </table>
                                                    <?php }?>
                                                    </div>

                                                    <!-- DISPLAY QUESTION ENDS -->
                                                    <?php $i++;}
                                                    }else{

                                                    $query_pag_data = mysqli_query($conn,"SELECT * from question where e_id='".$e_id."' and  question_status=1 and c_id='".$category_id."' and s_c_id='".$subcategory_id."' order by rand() LIMIT ".$question_limit);


                                                    $total_querstion= $question_limit;
                                                    $timeduration=60000*$query_exam_Name['duration'];
                                                    $i=1;
                                                    $m_e_id=1;
                                                    while($result=mysqli_fetch_array($query_pag_data)){
                                                        $rows[] = $result;
                                                    ?>  

                                                    <!-- DISPLAY QUESTION BEGINS -->
                                                    <!-- same code -->                                          
                                                    <!-- DISPLAY QUESTION ENDS -->

                                                    <?php   $i++;
                                                            $_SESSION["rows"] = $rows;
                                                        }

                                                    }

                                                    ?>

                                                    <?php 
                                                    $json = json_encode($rows);
                                                    $_SESSION ['json'] = $json;
                                                        ?>                                                  
                                                </td>
                                            </tr>
                                            <tr>
                                                <td>
                                                    <table>
                                                    <tr>
                                                    <td><div id="prev" class="btn btn-gray "><?php echo constant('TI_PREVIOUS_BUTTON');?></div></td>
                                                    <td><div id="mnext" class="btn btn-gray"><?php echo constant('TI_MARK_FOR_REVIEW_BUTTON');?></div></td>
                                                    <td><div id="next" class="btn btn-gray"><?php echo constant('TI_NEXT_BUTTON');?></div></td>
                                                    <td><div id="clearAnswer" class="btn btn-gray"><?php echo constant('TI_CLEAR_ANSWER_BUTTON');?></div></td>
                                                    <td><div style="float:right"><input id="finish" class="btn btn-green" value="Finish" name="Finish" onclick="return confirm('<?php echo constant('TI_SUBMITALERT_MESSAGE')?>')" type="submit"></div></td>
                                                    </tr>
                                                    </table>
                                                </td>
                                            </tr>
                                        </table>
                                        <input type="hidden" name="exam_id" value="<?php echo $_GET['exam_id'];?>"> 
                                    </form>
                        </div>
                    </div>
                </div>
            </div>

2 个答案:

答案 0 :(得分:1)

是的,您使用会话的步骤将起作用,并且对于已经标记的答案,您必须更新数据库,并获得新的设置。

答案 1 :(得分:0)

在第一页加载,然后在数据库中保存所有问题ID和用户ID关系,如

qid uid ans
1    1   update 
1    5   update 
2    5   update 

所以像这样所有队列都是以随机顺序存储用户ID并且在每个答案更新时这个记录我觉得很容易因为如果用户关闭窗口或任何灯关闭,计算掉它易于检测到它的左侧

EG。如果用户回答3个问题,那么你可以检测哪些没有回答然后只获取那些问题或你想要应用它的任何其他逻辑对你来说很容易

所以数据库是最好的解决方案,因为如果您使用的是在更改浏览器或任何其他问题时没有获得值,那么它将无效。