Initial commit

This commit is contained in:
2026-06-13 10:54:54 +07:00
commit fb63e876ea
41 changed files with 2473 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
<?php
include 'db.php';
$id = $_GET['id'];
$conn->query("DELETE FROM spbu WHERE id=$id");
echo json_encode(["status"=>"deleted"]);
?>