Commit b60787fa8e35827e9866f46b1c142593de256ff5
1 parent
90ec664c
Test
Showing
1 changed file
with
1 additions
and
3 deletions
Show diff stats
site/formInscription.php
... | ... | @@ -29,9 +29,7 @@ $groupes = getGroupes(); |
29 | 29 | foreach($groupes as $groupe) |
30 | 30 | { |
31 | 31 | $id = $groupe['id']; |
32 | - ?> | |
33 | - <option value="<php echo $id;?>"><?php echo $groupe['nom'];?></option> | |
34 | - <?php | |
32 | + echo "<option value=$id>$groupe['nom']</option>"; | |
35 | 33 | } |
36 | 34 | ?> |
37 | 35 | </select> | ... | ... |