添加下拉列表,其中包含从数据库填充的值

I'm trying to create a dropdown list with the values being populated from the database. In the following code, I have created a table for viewing the student details and created delete and add buttons to add and delete the information.

The problem is while adding the details for class id, I used a dropdown value from another table to be populate the values, but I was not able to do it.

<html>
    <head><title>viewstudent</title>
    <?php
        $host = "localhost";
        $user = "root";
        $pass = "";
        $dbname = "my_attendance"; 
        $prefix = "";

        $con = mysql_connect($host, $user, $pass)
            or die ("not connected to db");

        mysql_select_db($dbname, $con)
            or die("database not selected");

        if (isset($_POST['delete'])){
            $deleteqry = "DELETE from student_master WHERE ID='$_POST[hidden]'" ;
            mysql_query($deleteqry, $con);
        };

        if (isset($_POST['add'])){
            $clid=mysql_real_escape_string($_POST['classid']);
            $sid=mysql_real_escape_string($_POST['studentid']);
            $fn=mysql_real_escape_string($_POST['fname']);
            $ln=mysql_real_escape_string($_POST['lname']);
            $dob=mysql_real_escape_string($_POST['dob']);
            $em=mysql_real_escape_string($_POST['email']);
            $ph=mysql_real_escape_string($_POST['phone']);
            $loc=mysql_real_escape_string($_POST['locationid']);
            $emer=mysql_real_escape_string($_POST['emergency']);

            $addquery = ("INSERT INTO student_master(classid, studentid, fname, lname, dob, phone, email, locationid, emergency)
                VALUES('$clid', '$sid', '$fn', '$ln', '$dob', '$ph', '$em', '$loc', '$emer')");

            mysql_query($addquery, $con);
      };

      $query=("SELECT * FROM student_master");
      $result = mysql_query($query);
  ?>
  </head>
  <body>
      <table align="center" width="500" border="1" cellspacing="1" cellpadding="1">
          <tr>
              <th>Id</th><th>classid</th><th>studentid</th><th>fname</th><th>lname</th><th>dob</th><th>phone</th><th>email</th><th>locationid</th><th>emergency</th>
          </tr>

          <?php
              while( $row = mysql_fetch_array($result,MYSQLI_ASSOC))
              {
                  echo "<form action=viewstudentinfo.php method=POST >";
                  echo "<tr align='center'>";
                  echo "<td>" . "<input type=text name=ids value=" .$row['id']." </td>";
                  echo "<td>" . "<input type=text name=classid value=" .$row['classid']." </td>";
                  echo "<td>" . "<input type=number name=studentid value=" .$row['studentid']." </td>";
                  echo "<td>" . "<input type=text name=fname value=" .$row['fname']." </td>";
                  echo "<td>" . "<input type=text name=lname value=" .$row['lname']." </td>";
                  echo "<td>" . "<input type=text name=dob value=" .$row['dob']." </td>";
                  echo "<td>" . "<input type=text name=phone value=" .$row['phone']." </td>";
                  echo "<td>" . "<input type=text name=email value=" .$row['email']." </td>";
                  echo "<td>" . "<input type=text name=locationid value=" .$row['locationid']." </td>";
                  echo "<td>" . "<input type=text name=emergency value=" .$row['emergency']." </td>";
                  echo "<td>" . "<input type=hidden name=hidden value=" .$row['id']." </td>";
                  echo "<td>" . "<input type=submit name=delete value=Delete" ." </td>";
                  echo "</tr>";
                  echo "</form>";
             }
             echo "<form action=viewstudentinfo.php method= post>";
             echo "<tr>";
             echo "<td><input type=text name=id></td>";
             echo "<td><select type=text name=classid></td>";?>

          // populating classid values from another table....

         <?php  
             $query = 'SELECT classid FROM class_master';  

             $result1 = mysql_query($query, $con) or die(mysql_error($con));  

             while ($row = mysql_fetch_array($result1))  
             {  
                 echo '<option value="' . $row["classid"] . '"> ' . $row["classid"] .     '</option>';
             }  
             echo "</select>";
         ?>  
         <?php
             echo "<td><input type=number name=studentid></td>";
             echo "<td><input type=text name=fname></td>";
             echo "<td><input type=text name=lname></td>";
             echo "<td><input type=date name=dob></td>";
             echo "<td><input type=number name=phone></td>";
             echo "<td><input type=email name=email></td>";
             echo "<td><input type=number name=locationid></td>";
             echo "<td><input type=number name=emergency></td>";
             echo "<td>" . "<input type=submit name=add value=ADD" ." </td>";
             echo "</tr>";
             echo "</form>";
             echo "</table>";
             mysql_close($con);
         ?>

You are closing the <td> inside the select:

Replace

 echo "<td><select type=text name=classid></td>";?>

With

echo "<td><select type=text name=classid>";?>

And close the '</td>' after the '</select>'

Find out <td><select type=text name=classid></td> in your code and remove the ending tag </td> from it. After all the <option> ... </option> close the </td>