1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
| <div overflow = "scroll" width="10cm" height="20cm">
<table width="80%" border="1" bgcolor="silver">
<?
while($list=pg_fetch_assoc($req)){
?>
<tr>
<td><input type="radio" name="a" value="<? echo $list['numserie'];?>"></td>
<td><? echo $list['num'];?></td><td><? echo $list['bon_commande'] ;?></td>
<td><? echo $list['nom'] ;?></td><td><? echo $list['type_objet'];?></td>
<td><? echo $list['prenom'];?></td><td><? echo $list['modele'];?></td>
<td><? echo $list['age'];?></td><td><? echo $list['nom_pole'];?></td>
<td><? echo $list['ville'];?></td><td><? echo $list['prenom'];?></td>
</tr>
<?
}
?>
</table>
</div>
<?
} |