24 lines
491 B
PHP
24 lines
491 B
PHP
<?php
|
|
require_once __DIR__ . '/../../connect.php';
|
|
|
|
|
|
// Use prepared statement to prevent SQL injection
|
|
$sql = "
|
|
SELECT * FROM `server_locations`
|
|
";
|
|
|
|
try {
|
|
$stmt = $con->prepare($sql);
|
|
|
|
$stmt->execute();
|
|
|
|
$car_locations = $stmt->fetchAll(PDO::FETCH_ASSOC);
|
|
|
|
if ($car_locations) {
|
|
jsonSuccess($car_locations);
|
|
} else {
|
|
jsonError("No car locations found");
|
|
}
|
|
} catch (PDOException $e) {
|
|
jsonError("Database error: " . $e->getMessage());
|
|
} |