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 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95
|
<?php
// on affiche n boitier en fonction de ce que l'utilisateur a saisie
for ($x = 1; $x <= $nboitier; $x++){
echo "<div class='col-sm-3'>
<div class='panel panel-primary'>
<div class='panel-heading'><b>Boitier n°$x</b></div>
<div class='panel-body'>
<button type='button' class='btn' onclick=>port 1
<input type='hidden' name='l1' value='0'><input type='checkbox' name='l1' value='1'></button>
<button type='button' class='btn'>port 2
<input type='hidden' name='l2' value='0'><input type='checkbox' name='l2' value='1'></button>
<hr />
<button type='button' class='btn'>port 3
<input type='hidden' name='l3' value='0'><input type='checkbox' name='l3' value='1' ></button>
<button type='button' class='btn'>port 4
<input type='hidden' name='l4' value='0'><input type='checkbox' name='l4' value='1'></button>
<hr />
<button type='button' class='btn'>port 5
<input type='hidden' name='l5' value='0'><input type='checkbox' name='l5' value='1'></button>
<button type='button' class='btn'>port 6
<input type='hidden' name='l6' value='0'><input type='checkbox' name='l6' value='1'></button>
<hr />
<button type='button' class='btn'>port 7
<input type='hidden' name='l7' value='0'><input type='checkbox' name='l7' value='1'></button>
<button type='button' class='btn'>port 8
<input type='hidden' name='l8' value='0'><input type='checkbox' name='l8' value='1'></button>
<hr />
<button type='button' class='btn'>port 9
<input type='hidden' name='l9' value='0'><input type='checkbox' name='l9' value='1'></button>
<button type='button' class='btn'>port 10
<input type='hidden' name='l10' value='0'><input type='checkbox' name='l10' value='1'></button>
<hr />
<button type='button' class='btn'>port 11
<input type='hidden' name='l11' value='0'><input type='checkbox' name='l11' value='1'></button>
<button type='button' class='btn'>port 12
<input type='hidden' name='l12' value='0'><input type='checkbox' name='l12' value='1'></button>
<hr />
<button type='button' class='btn'>port 13
<input type='hidden' name='l13' value='0'><input type='checkbox' name='l13' value='1'></button>
<button type='button' class='btn'>port 14
<input type='hidden' name='l14' value='0'><input type='checkbox' name='l14' value='1'></button>
<hr />
<button type='button' class='btn'>port 15
<input type='hidden' name='l15' value='0'><input type='checkbox' name='l15' value='1'></button>
</div>
</div>
</div>
";
}
?> |
Partager