Initial commit - clean and ready for Coolify

This commit is contained in:
noooviiieee
2026-06-11 10:16:53 +07:00
commit 19ebb84943
158 changed files with 9448 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
<?php
include 'koneksi.php';
$status = $_POST['status_kepemilikan'];
$luas = $_POST['luas_tanah'];
$geo = $_POST['geojson'];
$sql = "INSERT INTO parsil_tanah (status_kepemilikan, luas_tanah, geojson)
VALUES ('$status', '$luas', '$geo')";
if ($conn->query($sql) === TRUE) {
echo "Sukses";
} else {
echo "Error: " . $conn->error;
}
$conn->close();
?>