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
|
<?php
include ("outils.php");
pc_n_serie($sn, $nb, $rs);
while($tab=mysql_fetch_array($rs)) {
?>
<tr>
<td COLSPAN="6"> </td>
</tr>
</table>
</td>
</tr>
<td valign="top"><hr>
<table width="966" height="227" BORDER="0" CELLPADDING="0" CELLSPACING="0" bordercolor="#BDE7F7">
<tr>
<th height="33" ><p align="left" class=text2>Réaffectation de PC </th>
</tr>
<tr>
<td height="125" align="center">
<table width="335" height="105">
<form name="f2" action="affect2.php" method="post">
<input type="hidden" value="<?php echo $id; ?>" name="id">
<tr>
<td width="128"><span class="Style1"> Nom :</span></td>
<td><input name="nom" value="<?php echo $tab[3]; ?>"></td>
</tr>
<tr>
<td><span class="Style1"> Prénom :</span></td>
<td><input name="pre" value="<?php echo $tab[4]; ?>"></td>
</tr>
<tr>
<td><span class="Style1"> Matricule :</span></td>
<td><input name="matr" value="<?php echo $tab[5]; ?>"></td>
</tr>
<tr>
<td><span class="Style1"> Services :</span></td>
<td><input name="serv" value="<?php echo $tab[6]; ?>"></td>
</tr>
<tr><td><span class="Style1"> Date : </span></td> <td><?php echo $d; ?></td></tr>
<tr>
<label></label></td></tr>
<tr><td height="52"><input type="submit" value="Valider" ></td>
<td><input type="reset" value="Annuler"></td></tr>
</form> |