Files
webgis-poverty-mapping/hapus_jalan.php
T
2026-06-06 22:02:14 +07:00

17 lines
427 B
PHP

<?php
include 'auth.php';
if (!isAdminPemerintah()) { header("HTTP/1.1 403 Forbidden"); exit; }
include 'koneksi.php';
if (isset($_GET['id'])) {
$id = mysqli_real_escape_string($conn, $_GET['id']);
$query = "DELETE FROM jalan WHERE id='$id'";
if (mysqli_query($conn, $query)) {
header("Location: index.php?status=terhapus");
} else {
echo "Gagal menghapus: " . mysqli_error($conn);
}
}
?>