Files
TUGAS-SIG/update_radius.php
T
superbia-17 2b42e822eb first commit
2026-06-06 23:34:20 +07:00

9 lines
245 B
PHP

<?php
$conn = new mysqli("localhost", "root", "", "gis_project");
$id = $_POST['id'];
$rad = $_POST['radius'];
$stmt = $conn->prepare("UPDATE worship_places SET radius = ? WHERE id = ?");
$stmt->bind_param("ii", $rad, $id);
$stmt->execute();
?>