edit files

This commit is contained in:
2026-06-10 19:48:00 +07:00
parent 8d26d3842d
commit 13cc0c9bb7
63 changed files with 8750 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
<?php
include 'koneksi.php';
$nama = $_POST['nama'];
$wa = $_POST['wa'];
$status = $_POST['status'];
$lat = $_POST['lat'];
$lng = $_POST['lng'];
$query = "INSERT INTO spbu (nama_spbu, no_wa, status, latitude, longitude)
VALUES ('$nama','$wa','$status','$lat','$lng')";
if ($conn->query($query)) {
echo "success";
} else {
echo "error";
}
?>