Community Center | Not monitored
Tag not monitored by Microsoft.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
<?php
if (empty($_GET['id'])) {
header('Location: index.php');
die();
}
require_once 'db.php';
$sql = 'DELETE FROM cars WHERE id = :id';
$stmt = $conn->prepare($sql);
$stmt->execute([
':id' => $_GET['id'],
]);
header('Location: index.php');
?>
Tag not monitored by Microsoft.