Commit 90ec664c4c34438ad87e5c87a66acc83f12f0743

Authored by grouille
1 parent 053c1835

Test

Showing 1 changed file with 2 additions and 1 deletions   Show diff stats
site/formInscription.php
... ... @@ -28,8 +28,9 @@ $groupes = getGroupes();
28 28 <?php
29 29 foreach($groupes as $groupe)
30 30 {
  31 + $id = $groupe['id'];
31 32 ?>
32   - <option value="<php echo $groupe['id'];?>"><?php echo $groupe['nom'];?></option>
  33 + <option value="<php echo $id;?>"><?php echo $groupe['nom'];?></option>
33 34 <?php
34 35 }
35 36 ?>
... ...