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.
7 lines
271 B
7 lines
271 B
<?php
|
|
require_once "database.php";
|
|
$id = isset($_GET['id']) ? $_GET['id'] : die('ERROR: Record ID not found.');
|
|
$db_query = "delete from maintance_contract_receivable where id = '$id'";
|
|
$rs = mysqli_query($link, $db_query);
|
|
header("Location:receivableview-index.php");
|
|
?>
|