将后法阀与阵列值进行比较



我试图将post method收到的表单中的值与数组值进行比较,这是两个二元值,我试图使用in_array方法,但它增加了错误变量,并且我确定输入的值和数组的值是相同的 $i 是循环的计数器 OD

     $answer = array(array(1,3)) 
     // `1` is the number
     // `2` is the Valur od correct answer                           
     For($i=0;$i<25;$i++) {
       if(in_array($_POST['p'.$i], $answers[$i][0])) {
         $points++;
       } else { 
         $Mistakes++;
       }
     }

网页代码:

<input type="radio" name="p1" value="3"/>answer

实际上只是使用可能更少或更多问题的概念

$answers['p1'] = 3; 
$answers['p2'] = 1;
foreach ($_POST as $key => $value){
    if (preg_match('/p[0-9]{1,}/', $key)){
        $question = $key;
        $answer = $value;
        if ($answer == $answers[$question]){
            $points++;
        } else {
            $Mistakes++;
        }
    }
}

相关内容

  • 没有找到相关文章

最新更新