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.
18 lines
711 B
18 lines
711 B
<?php
|
|
require_once "database.php";
|
|
$id = isset($_GET['id']) ? $_GET['id'] : die('ERROR: Record ID not found.');
|
|
// 因為有foreign_key, 主表(specsurvey_main)要留在最後才能刪
|
|
$db_query = "delete from specsurvey_car where mid = '$id'";
|
|
if ($rs = mysqli_query($link, $db_query)) {
|
|
$db_query = "delete from specsurvey_door where mid = '$id'";
|
|
if ($rs = mysqli_query($link, $db_query)) {
|
|
$db_query = "delete from specsurvey_function where mid = '$id'";
|
|
if ($rs = mysqli_query($link, $db_query)) {
|
|
$db_query = "delete from specsurvey_main where id = '$id'";
|
|
$rs = mysqli_query($link, $db_query);
|
|
}
|
|
}
|
|
}
|
|
|
|
header("Location:specsurvey-index.php");
|
|
?>
|