Commit f29c78528e6318d6852be457223a0f908120f478
1 parent
1c768fe9
Test Graphe
Showing
1 changed file
with
9 additions
and
1 deletions
Show diff stats
site/formGraphe.php
1 | +<?php | ||
2 | +$min = date_min(); | ||
3 | +$mins = explode(" ", $min['min']); | ||
4 | +$date_min = $mins[0]; | ||
5 | + | ||
6 | +$max = date_max(); | ||
7 | +$maxs = explode(" ", $max['max']); | ||
8 | +$date_max = $maxs[0]; | ||
9 | +?> | ||
1 | <div class="row"> | 10 | <div class="row"> |
2 | <div class="col-4 col-md-4 offset-md-4 offset-4"> | 11 | <div class="col-4 col-md-4 offset-md-4 offset-4"> |
3 | <br/> | 12 | <br/> |
@@ -10,7 +19,6 @@ | @@ -10,7 +19,6 @@ | ||
10 | <td> | 19 | <td> |
11 | <div class="form-group my-1 mr-sm-2"> | 20 | <div class="form-group my-1 mr-sm-2"> |
12 | <select class="custom-select my-1 mr-sm-2" id="names" name="nom"> | 21 | <select class="custom-select my-1 mr-sm-2" id="names" name="nom"> |
13 | - <option></option> | ||
14 | <?php | 22 | <?php |
15 | $names = get(nom); | 23 | $names = get(nom); |
16 | foreach($names as $name) | 24 | foreach($names as $name) |