Initial commit
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
<?php
|
||||
require 'db.php';
|
||||
|
||||
header('Content-Type: application/json; charset=utf-8');
|
||||
|
||||
if ($_SERVER["REQUEST_METHOD"] == "POST") {
|
||||
$nama = $_POST['nama'] ?? null;
|
||||
$nomor = $_POST['nomor'] ?? null;
|
||||
$status = $_POST['status'] ?? null;
|
||||
$lat = $_POST['latitude'] ?? null;
|
||||
$lng = $_POST['longitude'] ?? null;
|
||||
|
||||
if ($nama === null || $nomor === null || $status === null || $lat === null || $lng === null) {
|
||||
http_response_code(400);
|
||||
echo json_encode(["status" => "error", "message" => "Missing required fields."]);
|
||||
exit;
|
||||
}
|
||||
|
||||
$sql = "INSERT INTO SPBU (nama, nomor, status, Latitude, Longitude) VALUES (?, ?, ?, ?, ?)";
|
||||
$stmt = $pdo->prepare($sql);
|
||||
|
||||
if ($stmt->execute([$nama, $nomor, $status, $lat, $lng])) {
|
||||
echo json_encode(["status" => "success", "message" => "SPBU Data Saved!"]);
|
||||
} else {
|
||||
http_response_code(500);
|
||||
echo json_encode(["status" => "error", "message" => "Failed to save data."]);
|
||||
}
|
||||
} else {
|
||||
http_response_code(405);
|
||||
echo json_encode(["status" => "error", "message" => "Method not allowed."]);
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user