-
Notifications
You must be signed in to change notification settings - Fork 0
/
homeSearchSection.php
38 lines (35 loc) · 1.41 KB
/
homeSearchSection.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
32
33
34
35
36
37
38
<form class="d-flex justify-content-around">
<div class="form-group">
<label for="genre" class="form-label mt-4">genre</label>
<select class="form-select" id="genre">
<option value="">All</option>
<?php
$genres = getAllGenres($pdo);
foreach ($genres as $genre) {
echo "<option value=\"".$genre['idGenre']."\">".$genre['libelle']."</option>";
}
?>
</select>
</div>
<div class="form-group">
<label for="annee" class="form-label mt-4">annee de sortie</label>
<select class="form-select" id="annee">
<option value=""></option>
<?php
$i=2023;
while($i >= 1950):
echo "<option value='$i'>$i</option>";
$i--;
endwhile;
?>
</select>
</div>
<div class="form-group">
<label for="projection" class="form-label mt-4"> date de projection</label>
<input type="date" class="form-control" id="projection" placeholder="projection">
</div>
<div class="form-group">
<label for="movie-name" class="form-label mt-4">nom du film</label>
<input type="text" class="form-control" id="movie-name" placeholder="entrez le nom du film">
</div>
</form>