-
Notifications
You must be signed in to change notification settings - Fork 0
/
lieux.php
26 lines (26 loc) · 827 Bytes
/
lieux.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
require 'inc/connexion/connexion.php';
require 'inc/fonctions.php';
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Liste des Villes</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@600;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css">
<link rel="stylesheet" href="inc/css/style.css">
<link rel="icon" href="inc/img/jeux-olympiques.png">
</head>
<body>
<?php
include 'inc/navbar.php';
?>
<div id = "srch-ctn">
<h2>Tous les lieux <i class="fas fa-medal" color="yellow"></i></h2>
<?php
printAllLieux($pdo, getTable($pdo, 'Lieux'));
?>
</body>
</html>