2024-06-14 17:31:37 +02:00
|
|
|
<?php
|
|
|
|
require_once $_SERVER['DOCUMENT_ROOT'] . '/tools/dbConnect.php';
|
|
|
|
session_start();
|
|
|
|
|
|
|
|
if (isset($_COOKIE['userData'])) {
|
|
|
|
$userDataEncoded = $_COOKIE['userData'];
|
|
|
|
$userData = json_decode($userDataEncoded, true); // 'true' pour obtenir un tableau associatif
|
|
|
|
|
|
|
|
$email = $userData['email'];
|
|
|
|
$name = $userData['name'];
|
|
|
|
$familyName = $userData['familyName'];
|
|
|
|
$role = $userData['role'];
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="fr">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
|
|
<link rel="stylesheet" href="/styles/main.css" />
|
|
|
|
<link rel="stylesheet" href="/styles/header.css" />
|
|
|
|
<link rel="stylesheet" href="/styles/footer.css" />
|
|
|
|
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" rel="stylesheet" />
|
|
|
|
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32"
|
|
|
|
href="https://tickets.paris2024.org/obj/media/FR-Paris2024/specialLogos/favicons/favicon-32x32.png" />
|
|
|
|
<script src="https://kit.fontawesome.com/f16a36bad3.js" crossorigin="anonymous"></script>
|
|
|
|
<script src="/scripts/dateChecker.js" defer></script>
|
2024-06-15 00:51:32 +02:00
|
|
|
<script src="/scripts/redirectToSelected.js" defer></script>
|
2024-06-14 17:31:37 +02:00
|
|
|
<title>List des évènements | Jeux Olympiques - Paris 2024</title>
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
<?php include $_SERVER['DOCUMENT_ROOT'] . '/views/header.php' ?>
|
|
|
|
<div class="event-container">
|
2024-06-15 00:51:32 +02:00
|
|
|
<img src="https://cdn-icons-png.flaticon.com/512/2538/2538566.png" alt="Avatar">
|
|
|
|
<h2 class="event-title">Afficher les évènements</h2>
|
|
|
|
<p class="event-subtitle">Remplissez le formulaire suivant afin de trier les évènements à votre guise.</p>
|
|
|
|
|
|
|
|
<div class="form-group">
|
|
|
|
<label for="eventName">Nom de l'évènement</label>
|
|
|
|
<select name="eventName" id="eventName">
|
|
|
|
<?php
|
|
|
|
$query = "SELECT DISTINCT title FROM event";
|
|
|
|
$result = mysqli_query($db, $query);
|
|
|
|
|
|
|
|
while ($row = mysqli_fetch_assoc($result)) {
|
|
|
|
$title = htmlspecialchars($row['title'], ENT_QUOTES);
|
|
|
|
echo "<option value='" . $title . "'>" . $title . "</option>";
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</select>
|
|
|
|
<button type="submit" onclick="redirectToSelectedTitle()"><i class="fas fa-search"></i> Rechercher</button>
|
2024-06-14 17:31:37 +02:00
|
|
|
</div>
|
|
|
|
|
2024-06-15 00:51:32 +02:00
|
|
|
<div class="form-group">
|
|
|
|
<label for="location">Sélectionner un lieu :</label>
|
|
|
|
<select name="location" id="location">
|
|
|
|
<?php
|
|
|
|
$query = "SELECT DISTINCT location FROM event";
|
|
|
|
$result = mysqli_query($db, $query);
|
2024-06-14 17:31:37 +02:00
|
|
|
|
2024-06-15 00:51:32 +02:00
|
|
|
while ($row = mysqli_fetch_assoc($result)) {
|
|
|
|
$location = htmlspecialchars($row['location'], ENT_QUOTES);
|
|
|
|
echo "<option value='" . $location . "'>" . $location . "</option>";
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</select>
|
|
|
|
<button type="submit" onclick="redirectToSelectedLocation()"><i class="fas fa-search"></i> Rechercher</button>
|
2024-06-14 17:31:37 +02:00
|
|
|
</div>
|
2024-06-15 00:51:32 +02:00
|
|
|
<div class="form-group">
|
|
|
|
<div class="event-date">
|
|
|
|
<label for="eventDate">Sélectionner une date :</label>
|
|
|
|
<select name="eventDate" id="eventDate">
|
|
|
|
<?php
|
|
|
|
$query = "SELECT DISTINCT date FROM event ORDER BY date ASC";
|
|
|
|
$result = mysqli_query($db, $query);
|
|
|
|
|
|
|
|
while ($row = mysqli_fetch_assoc($result)) {
|
|
|
|
echo "<option value='" . $row['date'] . "'>" . $row['date'] . "</option>";
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</select>
|
|
|
|
<button type="submit" onclick="redirectToSelectedDate()"><i class="fas fa-search"></i> Rechercher</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2024-06-14 17:31:37 +02:00
|
|
|
|
|
|
|
<!-- code de la page ici -->
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<?php include $_SERVER['DOCUMENT_ROOT'] . '/views/footer.php' ?>
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|