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
|
<form method="post" name="form33" onSubmit="return validerMonFormulaire();" action="" >
<p> </p>
<table width="85%" border="1" bordercolor="#0000CC" class="Style1" id="tablere">
<tr>
<th width="4%" scope="col"> </th>
<th width="11%" class="Style1" scope="col">N°réf.</th>
<th width="14%" class="Style1" scope="col">Nature</th>
<th width="13%" class="Style1" scope="col">Taille</th>
</tr>
mysql_connect("localhost", "root", "");
mysql_select_db("article");
$sql=("select * from article");
$reponse2 = mysql_query($sql);
while ($donnees = mysql_fetch_array($reponse2))
{
<tr>
<td><div align="center" class="Style9">
<input type="radio" name="selection2" id="selection2" onclick= "selectionner3('<?php echo $donnees['id']; ?>')" />
</div></td>
<td><div align="center" class="Style9"><?php echo $donnees['id']; ?></div></td>
<td><div align="center" class="Style9"><?php echo $donnees['nature']; ?></div></td>
<td><div align="center" class="Style9"><?php echo $donnees['taille']; ?></div></td>
</tr> |