Initial commit

This commit is contained in:
ocabacaa
2026-06-12 10:11:19 +07:00
commit 9503c2dda4
18 changed files with 1119 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
header('Content-Type: application/json');
include '../config/koneksi.php';
$id = $_GET['id'] ?? '';
$query = mysqli_query(
$conn,
"DELETE FROM jalan
WHERE id='$id'"
);
echo json_encode([
"success" => $query
]);