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.
 
 
 
 
 
 

12 lines
317 B

<?php
ob_start();
include "header.php";
$id = isset($_GET['id']) ? $_GET['id'] : die('ERROR: Record ID not found.');
$db_query = "DELETE FROM pre_order WHERE id='$id'";
mysqli_query($link, $db_query);
header("Refresh:0; url=pre_order-index.php?function_name=pre_order&".$token_link);
ob_end_flush();
?>