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 96 97 98
| <input name="etape" type="hidden" value="1" />
<table width="200" border="0" cellpadding="0" cellspacing="0">
<tr>
<td width="77"><span class="style21">Module :</span></td>
<td width="123"><label>
<select name="menu_module" id="menu_module">
<?php
do {
?>
<option value="<?php echo $row_rs_module['m_code']?>"><?php echo $row_rs_module['m_nom']?></option>
<?php
} while ($row_rs_module = mysql_fetch_assoc($rs_module));
$rows = mysql_num_rows($rs_module);
if($rows > 0) {
mysql_data_seek($rs_module, 0);
$row_rs_module = mysql_fetch_assoc($rs_module);
}
?>
</select>
</label></td>
</tr>
<tr>
<td>Filière :</td>
<td><label>
<select name="menu_filiere" id="menu_filiere">
<?php
do {
?>
<option value="<?php echo $row_rs_filiere['f_code']?>"><?php echo $row_rs_filiere['f_nom']?></option>
<?php
} while ($row_rs_filiere = mysql_fetch_assoc($rs_filiere));
$rows = mysql_num_rows($rs_filiere);
if($rows > 0) {
mysql_data_seek($rs_filiere, 0);
$row_rs_filiere = mysql_fetch_assoc($rs_filiere);
}
?>
</select>
</label></td>
</tr>
<tr>
<td>Année :</td>
<td><label>
<select name="menu_annee" id="menu_annee">
<?php
do {
?>
<option value="<?php echo $row_rs_module['m_code']?>"><?php echo $row_rs_module['m_annee_scolaire']?></option>
<?php
} while ($row_rs_module = mysql_fetch_assoc($rs_module));
$rows = mysql_num_rows($rs_module);
if($rows > 0) {
mysql_data_seek($rs_module, 0);
$row_rs_module = mysql_fetch_assoc($rs_module);
}
?>
</select>
</label></td>
</tr>
<tr>
<td>Groupe :</td>
<td><label>
<select name="menu_groupe" id="menu_groupe">
<?php
do {
?>
<option value="<?php echo $row_rs_inscription['numero_inscription']?>"><?php echo $row_rs_inscription['groupe']?></option>
<?php
} while ($row_rs_inscription = mysql_fetch_assoc($rs_inscription));
$rows = mysql_num_rows($rs_inscription);
if($rows > 0) {
mysql_data_seek($rs_inscription, 0);
$row_rs_inscription = mysql_fetch_assoc($rs_inscription);
}
?>
</select>
</label></td>
</tr>
<tr>
<td>Note :</td>
<td><label>
<select name="menu_note" id="menu_note">
<option selected="selected">Controle 1</option>
<option>Controle 2</option>
<option>TD</option>
<option>TP</option>
<option>Synthese</option>
<option>Rattrapage</option>
</select>
</label></td>
</tr>
<tr>
<td> </td>
<td><label>
<input type="submit" name="suivant" id="suivant" value="suivant" />
</label></td>
</tr>
</table> |