-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathform.php
More file actions
34 lines (33 loc) · 1.37 KB
/
form.php
File metadata and controls
34 lines (33 loc) · 1.37 KB
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
<?php
// On récupère tout le contenu de la table geo-agro
$read_data = $bdd->prepare('SELECT DISTINCT Activite FROM `geo-agro`');
$read_data->execute();
?>
<div class="row">
<form action="controller/controller_recherche.php" method="post">
<div class="form-group ">
<div class="col-md-offset-2 col-md-2">
<label class="label-rechercher" for="sel1">Choisir une activité :</label>
</div>
<div class="col-md-4">
<select class="form-control select" id="sel1" name="activite">
<option value=""></option>
<?php
while($row = $read_data->fetch()){?>
<div class="col-md-offset-1 col-md-3">
<option value="<?php echo utf8_encode($row['Activite']); ?>">
<?php echo utf8_encode($row['Activite']); ?>
</option>
</div>
<?php } ?>
</select>
</div>
<div class="col-md-3">
<input class="btn btn-primary " type='submit' value="Rechercher" />
</div>
</div>
</form>
</div>
<?php
$read_data->closeCursor();
?>