-
Notifications
You must be signed in to change notification settings - Fork 0
/
templatePageTest.php
45 lines (43 loc) · 1.37 KB
/
templatePageTest.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
39
40
41
42
43
44
45
<?php
/**
* Created by PhpStorm.
* User: moribus
* Date: 25/10/2015
* Time: 14:58
*/ ?>
<!doctype html>
<html lang="fr">
<head>
<meta charset="utf-8">
<title>Test du calcul d'itinéraire</title>
</head>
<body>
<div id="InterfaceCalculItineraire">
<form action="index.php" method="post">
<span id="spanDepart">
<label>
Sélectionner le départ :
<select name="depart">
<?php
foreach ($destinations as $destination):?>
<option value="<?php echo $destination['nom']; ?>"><?php echo $destination['nom']; ?></option>
<?php endforeach; ?>
</select>
</label>
</span>
<span id="spanArrivee">
<label>
Sélectionner l'arrivée :
<select name="arrivee">
<?php
foreach ($destinations as $destination):?>
<option value="<?php echo $destination['nom']; ?>"><?php echo $destination['nom']; ?></option>
<?php endforeach; ?>
</select>
</label>
</span>
<input type="submit" value="Calculer l'itinéraire" />
</form>
</div>
</body>
</html>