Project Webgis2 SIG

This commit is contained in:
2026-06-11 10:38:09 +07:00
commit eb4d6b7eb0
22 changed files with 2914 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
include 'koneksi.php';
$data = json_decode(file_get_contents("php://input"), true);
$id = $data['id'];
$radius = $data['radius'];
$sql = "UPDATE ibadah
SET radius='$radius'
WHERE id=$id";
$conn->query($sql);
?>