Initial Commit: Tugas Semua Pertemuan

This commit is contained in:
2026-06-08 22:37:30 +07:00
commit bdfa23b412
50 changed files with 6888 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
include 'koneksi.php';
if(isset($_POST['id'])){
$id = $_POST['id'];
$stmt = $conn->prepare("DELETE FROM jalan WHERE id=?");
$stmt->bind_param("i", $id);
if($stmt->execute()){
echo "success";
} else {
echo "MYSQL ERROR: " . $stmt->error;
}
$stmt->close();
} else {
echo "ID TIDAK DITEMUKAN";
}
?>