first commit

This commit is contained in:
superbia-17
2026-06-06 23:34:20 +07:00
commit 2b42e822eb
19 changed files with 60345 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
<?php
header('Content-Type: application/json');
$conn = new mysqli("localhost", "root", "", "gis_project");
$result = $conn->query("SELECT * FROM worship_places");
$places = [];
while($row = $result->fetch_assoc()) {
$places[] = $row;
}
echo json_encode($places);
$conn->close();
?>