I made from in php. When I select a class, for example I select the class9, it shows me the table of class9. I also have inserted a row in the table containing the delete button to delete the corresponding row.  Now I want to delete a row buy clicking the button which is in the row. how can I do that?
First I choose a class from this option as in the image below ;The image from which we select the class 
And then the corresponding table is going to be shown. 
This is the image. When I click on the button, the corresponding row should be deleted.
<?php
include "connection.php";
?>
<!doctype html>
<html>
<head>
<title>KDR</title>
</head>
<body>
    <table border="2px" width="50%" height="auto">
    <tr>
        <th>No</th>
        <th>Name</th>
        <th>F/Name</th>
        <th>Age</th>
        <th>Delete</th>
    </tr>
    <?php
    $table = $_POST['formCountry'];
    $sql = "SELECT * FROM $table";
    $result = $conn->query($sql);
    while($row = $result->fetch_assoc())
    {
        echo "<tr>";
        echo "<td>" . $row['id'] . "</td>";
        echo "<td>" . $row['name'] . "</td>";
        echo "<td>" . $row['fname'] . "</td>";
        echo "<td>" . $row['age'] . "</td>";
        echo "<td><form method='POST' ><input type='submit' name='deletestudent' value='Delete'/></form></td>";
        echo "</tr>";
    }
    ?>
 </table>
 </body>
 
     
     
     
    