Assignment: Set B Q.2 Solution

Write HTML code to design multiple choice question paper for PHP subject. Display question wise marks and total marks received by the student in table format.

HTMl Form

                  <html>
  <body>
    <h2>
      Multiple Choice Question paper (20marks) 5 marks each
        <br>
      Subject: Maths 
    </h2>
    <form action="php.php" method="post">
      <input type="text" name="sn" placeholder="Enter Your Name"><br><br>
      Q.1:What is 7x5
      <br>
      <input type="radio" name="q1" value="40"> 40 <br>
      <input type="radio" name="q1" value="35"> 35 <br>
      <input type="radio" name="q1" value="20"> 20 <br><br>
      Q.2:What is 5+10
      <br>
      <input type="radio" name="q2" value="15"> 15<br>
      <input type="radio" name="q2" value="12">12<br>
      <input type="radio" name="q2" value="11">11<br><br>
      Q.3:What is 10x0
      <br>
      <input type="radio" name="q3" value="10">10<br>
      <input type="radio" name="q3" value="0">0<br>
      <input type="radio" name="q3" value="1">1<br><br>
      Q.4:What is 50x2
      <br>
      <input type="radio" name="q4" value="50">50<br>
      <input type="radio" name="q4" value="2">2<br>
      <input type="radio" name="q4" value="100">100<br><br>
    <br><br>
      <input type="submit"><input type="reset">
    </form>
  </body>
</html>
    
        
    
        

PHP SCRIPT

                  <html>
  <body>
    <?php
      $sn=$_POST['sn'];
      $q1=$_POST['q1'];
      $q2=$_POST['q2'];
      $q3=$_POST['q3'];
      $q4=$_POST['q4'];

      $a1=35;
      $a2=15;
      $a3=0;
      $a4=100;

      $totalmarks=0;

      if($q1==$a1)
      {
        $totalmarks+=5;
      }
      if($q2==$a2)
      {
        $totalmarks+=5;
      }
      if($q3==$a3)
      {
        $totalmarks+=5;
      }
      if($q4==$a4)
      {
        $totalmarks+=5;
      }
    ?>


<table border="2">
  <tr>
    <th>Student Name:</th>
    <td><?php echo $sn;?></td>
  </tr>
  <tr>
    <th>Questions:</th>
    <th>Correct Answers:</th>
    <th>Your Answers:</th>
  </tr>
  <tr>
    <th>1</th>
    <td><?php echo $a1 ;?></td>
    <td><?php echo $q1 ;?></td>
  </tr>
  <tr>
    <th>2</th>
    <td><?php echo $a2 ;?></td>
    <td><?php echo $q2 ;?></td>
  </tr>
  <tr>
    <th>3</th>
    <td><?php echo $a3 ;?></td>
    <td><?php echo $q3 ;?></td>
  </tr>
  <tr>
    <th>4</th>
    <td><?php echo $a4 ;?></td>
    <td><?php echo $q4 ;?></td>
  </tr>
  <tr>
    <th>Total Marks:</th>
    <th><?php echo $totalmarks ?></th>
  </tr>
</table>
  </body>
</html>