1

私のデータベースには、質問用と回答用の 2 つのテーブルがあります。

さて、問題は、回答をクリックして送信すると、クリックしたときにdivの同じページに正しいかどうかが表示され、正しいかどうかが表示されることです。

コードはここにあります:

<?php 
  session_start();
  require_once("scripts/connect_db.php");
  $arrCount = "";

  if(isset($_GET['question'])){
     $question = preg_replace('/[^0-9]/', "", $_GET['question']);
     $output = "";
     $answers = "";
     $q = "";
     $dv="";
     $dv2="";


     $singleSQL = mysql_query("SELECT * FROM questions WHERE id='$question' LIMIT 1");
     while($row = mysql_fetch_array($singleSQL)){
        $id = $row['id'];
        $thisQuestion = $row['question'];
        $type = $row['type'];
        $subject =$row['subject'];
        $exam =$row['exam'];
        $explan =$row['explan'];
        $question_id = $row['question_id'];
        $s ='<strong>'.$subject.'</strong>';
        $e ='<small>'.$exam.'</small>';
        $q = '<h2>'.$thisQuestion.'</h2>';
        $ex ='<div id="welcomeDiv" style="display:none;" class="expl" >'.$explan.'</div>';
        $sql2 = mysql_query("SELECT * FROM answers WHERE question_id='$question' ORDER BY rand()");
        while($row2 = mysql_fetch_array($sql2)){
            $answer = $row2['answer'];
            $correct = $row2['correct'];
            $answers .= '<table class="table table-hover table-bordered"> <tr>
            <td class="chk"><label style="cursor:pointer;"><input type="radio" name="rads" value="'.$correct.'">'.$answer.'</label></td>
            </tr></table>
            <input type="hidden" id="qid" value="'.$id.'" name="qid"><br />
            ';

            $answer=$_POST[$correct];
            if(isset($answer)&&$correct==1){

            echo    $dv.='<div style="display:none; color=green;" id="welcomeDiv" id="dv">Your answer '.$answer.'  is correct</div>';}

            else{
                 $dv2.='<div style="display:none; color=red;" id="welcomeDiv" id="dv2">Your answer '.$answer.'  is worng</div>';}



        }
        $output = ''.$s.','.$e.''.$q.','.$dv.''.$dv2.''.$answers.''.$ex.'<input type="button" name="answer" value="check" onclick="showDiv();check_asnwer()" id="" />';
        echo $output;
       }
    }


  ?>

私はそれを試みていますが、次のようなエラーが表示されます。

     Notice: Undefined index: 0 in F:\wamp\www\quiz\questions.php on line 38
     Notice: Undefined index: 1 in F:\wamp\www\quiz\questions.php on line 38
     Notice: Undefined index: 0 in F:\wamp\www\quiz\questions.php on line 38
     Notice: Undefined index: 0 in F:\wamp\www\quiz\questions.php on line 38

私のコードに問題はありますか?プロジェクトを完了するためにこれが必要なのを助けてください。

少し早いですがお礼を

4

1 に答える 1