考试系统考试界面代码

html代码:


Online Test Page




   

   


         
测试工号:CS00351
剩余时间:2:48:50
       
       

                                          
                                          
                                          
                                       
       

        
   
 
   

   

       
       

在线测试


       

(考试时间:180分钟    题型:多选题    满分:100分)



       

  多选题(错选、少选、多选不得分)



        
           
  1、testDS13

                  A testDScA13

                  B testDScb13

                  C testDScc13

                  D testDScd13

        
           
  2、testDS15

                  A testDScA15

                  B testDScb15

                  C testDScc15

                  D testDScd15

        
           
  3、testDS20

                  A testDScA20

                  B testDScb20

                  C testDScc20

                  D testDScd20

        
           
  4、testDS23

                  A testDScA23

                  B testDScb23

                  C testDScc23

                  D testDScd23

        
           
  5、testDS43

                  A testDScA43

                  B testDScb43

                  C testDScc43

                  D testDScd43

        
           
  6、testDS53

                  A testDScA53

                  B testDScb53

                  C testDScc53

                  D testDScd53

        
           
  7、testDS72

                  A testDScA72

                  B testDScb72

                  C testDScc72

                  D testDScd72

        
           
  8、testDS77

                  A testDScA77

                  B testDScb77

                  C testDScc77

                  D testDScd77

        
           
  9、testDS91

                  A testDScA91

                  B testDScb91

                  C testDScc91

                  D testDScd91

        
           
  10、testDS95

                  A testDScA95

                  B testDScb95

                  C testDScc95

                  D testDScd95

        
           
  11、testDS98

                  A testDScA98

                  B testDScb98

                  C testDScc98

                  D testDScd98

        
           
  12、testDS120

                  A testDScA120

                  B testDScb120

                  C testDScc120

                  D testDScd120

        
           
  13、testDS124

                  A testDScA124

                  B testDScb124

                  C testDScc124

                  D testDScd124

        
           
  14、testDS130

                  A testDScA130

                  B testDScb130

                  C testDScc130

                  D testDScd130

        
           
  15、testDS132

                  A testDScA132

                  B testDScb132

                  C testDScc132

                  D testDScd132

        
           
  16、testDS160

                  A testDScA160

                  B testDScb160

                  C testDScc160

                  D testDScd160

        
           
  17、testDS164

                  A testDScA164

                  B testDScb164

                  C testDScc164

                  D testDScd164

        
           
  18、testDS166

                  A testDScA166

                  B testDScb166

                  C testDScc166

                  D testDScd166

        
           
  19、testDS178

                  A testDScA178

                  B testDScb178

                  C testDScc178

                  D testDScd178

        
           
  20、testDS179

                  A testDScA179

                  B testDScb179

                  C testDScc179

                  D testDScd179

        
           
  21、testDS185

                  A testDScA185

                  B testDScb185

                  C testDScc185

                  D testDScd185

        
           
  22、testDS193

                  A testDScA193

                  B testDScb193

                  C testDScc193

                  D testDScd193

        
           
  23、testDS194

                  A testDScA194

                  B testDScb194

                  C testDScc194

                  D testDScd194

        
       
       

   



后台php代码:

    class Exam {
        function exam(){
            
            $this->display();
            
        }    
        function result(){
            $arr=$_POST;
            $arry= array();
            print_r (array_keys($arr));
            foreach(array_keys($arr) as $key=>$value){
            $name=substr($value,1); //提取题目的id号
            $arry[$name]=$arry[$name].$_POST["$value"];
            }
            print_r($arry);
            foreach($arry as $key=>$value){
                $m=D("exam");
                $data=$m->field("value,score")->where(array("id"=>$key))->find();
                
                if($data[value]==$value){
                    $c=$c+$data[score];
                }
                print_r($data);
                
            }
            
            $user=D("userexam");
            $a[user]=$arry[adgeNo];
            $a[score]=$c;
            $user->insert($a);
            
            echo "你的得分是".$c."分";
        }
            
    }

要注意的地方就是,php我使用的是brophp mvc框架,所以不会的小伙伴可以花一点时间看一下,具体数据库的的结构可以看自己喜欢什么样的,不一定要一样,上面代码都是自己试验成功的,有什么问题可以私信我,小白一个,大家一起努力学习。

考试系统考试界面代码_第1张图片

转载于:https://my.oschina.net/u/3786589/blog/1784826

你可能感兴趣的:(考试系统考试界面代码)