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

18 lines
572 B
PHP

<?php
header('Content-Type: application/json');
$conn = new mysqli("localhost", "root", "", "gis_project");
$name = $_POST['name'];
$lat = $_POST['lat'];
$lng = $_POST['lng'];
$radius = $_POST['radius'];
$type = $_POST['type'];
$address = $_POST['address']; // Capture the address
$stmt = $conn->prepare("INSERT INTO worship_places (name, lat, lng, radius, type, address) VALUES (?, ?, ?, ?, ?, ?)");
$stmt->bind_param("ssdiss", $name, $lat, $lng, $radius, $type, $address);
if ($stmt->execute()) {
echo json_encode(["id" => $conn->insert_id]);
}
?>