You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

13 lines
269 B

<?php
require_once "../database.php";
$id = isset($_GET['id']) ? $_GET['id'] : die('ERROR: Record ID not found.');
$db_query = "DELETE FROM paid_customer_detail WHERE id='$id'";
mysqli_query($link, $db_query);
header("location: paid_customer_detail.php");
die();