27 lines
715 B
PHP
27 lines
715 B
PHP
<?php
|
|
session_start();
|
|
include '../koneksi.php';
|
|
|
|
if (!isset($_SESSION['user_id'])) {
|
|
echo json_encode(['status' => 'error', 'message' => 'Unauthorized']);
|
|
exit;
|
|
}
|
|
|
|
$id = $_POST['id'] ?? '';
|
|
$latitude = $_POST['latitude'] ?? '';
|
|
$longitude = $_POST['longitude'] ?? '';
|
|
|
|
if (!$id || !$latitude || !$longitude) {
|
|
echo json_encode(['status' => 'error', 'message' => 'Data tidak lengkap']);
|
|
exit;
|
|
}
|
|
|
|
try {
|
|
$stmt = $pdo->prepare("UPDATE points SET latitude = ?, longitude = ? WHERE id = ?");
|
|
$stmt->execute([$latitude, $longitude, $id]);
|
|
|
|
echo json_encode(['status' => 'success']);
|
|
} catch (PDOException $e) {
|
|
echo json_encode(['status' => 'error', 'message' => 'Database error']);
|
|
}
|