Commit f29c78528e6318d6852be457223a0f908120f478

Authored by Guillaume
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 10 <div class="row">
2 11 <div class="col-4 col-md-4 offset-md-4 offset-4">
3 12 <br/>
... ... @@ -10,7 +19,6 @@
10 19 <td>
11 20 <div class="form-group my-1 mr-sm-2">
12 21 <select class="custom-select my-1 mr-sm-2" id="names" name="nom">
13   - <option></option>
14 22 <?php
15 23 $names = get(nom);
16 24 foreach($names as $name)
... ...