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.
 
 
 
 
 
 

9 lines
341 B

<?php
require_once "database.php";
include "../header.php";
$id = isset($_GET['id']) ? $_GET['id'] : die('ERROR: Record ID not found.');
$db_query = "delete from fault_notification_job_handling where id = '$id'";
$rs = mysqli_query($link, $db_query);
$account=$_GET['account'];
header("Location: faultreview-index.php?account=".$account);
?>