gmaps with restaurants
This commit is contained in:
parent
23725f3016
commit
9e5e0b2629
BIN
assets/pasted-20251111-123847-67f28890.jpg
Normal file
BIN
assets/pasted-20251111-123847-67f28890.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 113 KiB |
BIN
assets/pasted-20251111-124414-49fd422d.jpg
Normal file
BIN
assets/pasted-20251111-124414-49fd422d.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 113 KiB |
BIN
assets/vm-shot-2025-11-11T12-38-35-916Z.jpg
Normal file
BIN
assets/vm-shot-2025-11-11T12-38-35-916Z.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 113 KiB |
BIN
assets/vm-shot-2025-11-11T12-44-07-743Z.jpg
Normal file
BIN
assets/vm-shot-2025-11-11T12-44-07-743Z.jpg
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 113 KiB |
56
index.php
56
index.php
@ -1,16 +1,48 @@
|
|||||||
<?php
|
<?php
|
||||||
require_once 'db/config.php';
|
$restaurants = [
|
||||||
|
[
|
||||||
try {
|
"name" => "Restaurante D'Bacalhau",
|
||||||
$pdo = db();
|
"latitude" => 38.77124,
|
||||||
$stmt = $pdo->query('SELECT name, latitude, longitude, description FROM restaurants');
|
"longitude" => -9.09244,
|
||||||
$restaurants = $stmt->fetchAll();
|
"description" => "Specializing in codfish (bacalhau)."
|
||||||
} catch (PDOException $e) {
|
],
|
||||||
// For development, you might want to log this error.
|
[
|
||||||
// For production, you could show a generic error message.
|
"name" => "Cantinho do Avillez",
|
||||||
error_log('Database error: ' . $e->getMessage());
|
"latitude" => 38.7685,
|
||||||
$restaurants = []; // Ensure restaurants is an empty array on error
|
"longitude" => -9.0953,
|
||||||
}
|
"description" => "Contemporary Portuguese cuisine with international influences."
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"name" => "Fifty Seconds",
|
||||||
|
"latitude" => 38.774743,
|
||||||
|
"longitude" => -9.091382,
|
||||||
|
"description" => "A high-end dining experience with breathtaking views."
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"name" => "Butchers",
|
||||||
|
"latitude" => 38.7685,
|
||||||
|
"longitude" => -9.0975,
|
||||||
|
"description" => "A prime destination for meat lovers."
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"name" => "Capricciosa",
|
||||||
|
"latitude" => 38.7675,
|
||||||
|
"longitude" => -9.0897,
|
||||||
|
"description" => "A pizzeria with a pleasant terrace by the river."
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"name" => "The Old House",
|
||||||
|
"latitude" => 38.77140277,
|
||||||
|
"longitude" => -9.09240424,
|
||||||
|
"description" => "A well-regarded Chinese restaurant."
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"name" => "Honorato",
|
||||||
|
"latitude" => 38.7692,
|
||||||
|
"longitude" => -9.0958,
|
||||||
|
"description" => "A famous burger joint with a pleasant terrace."
|
||||||
|
]
|
||||||
|
];
|
||||||
?>
|
?>
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user