php sql delete record button in table code example
Example: html button delete row from mysql
<?php
include "dbConn.php"; // Using database connection file here
$id = $_GET['id']; // get id through query string
$del = mysqli_query($db,"delete from tblemp where id = '$id'"); // delete query
if($del)
{
mysqli_close($db); // Close connection
header("location:all_records.php"); // redirects to all records page
exit;
}
else
{
echo "Error deleting record"; // display error message if not delete
}
?>