first commit

This commit is contained in:
2026-06-10 20:51:12 +07:00
commit 55defff6cd
32 changed files with 10270 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
<?php
include 'koneksi.php';
$id = $_POST['id'];
$query = "DELETE FROM spbu WHERE id='$id'";
if(mysqli_query($conn, $query)){
echo "success";
}else{
echo "error";
}
?>