-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
31 lines (31 loc) · 936 Bytes
/
index.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
27
28
29
30
31
<?php
require 'inc/connexion/connexion.php';
require 'inc/fonctions.php';
?>
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@600;900&display=swap" rel="stylesheet">
<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>Filtre de recherche</h2>
<?php
SelectorFilter($pdo, getTable($pdo, 'Villes'), getAllDates($pdo), getTable($pdo, 'Sports'));
?>
<h2>Tous les sports ⛹🏽</h2>
<?php
printAllSearch($pdo, getTableSearch($pdo, NULL, NULL, NULL, NULL));
?>
</div>
<script src="inc/js/updateSelector.js"></script>
</body>
</html>