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
|
<?php
echo "<select name='categorie' size='1' >";
echo "<option value = 'comm_prec'> </option>";
$query_lib_attente = $dbconn_dns->query("SELECT idxattente,libelle_fr FROM attente ") ;
$nb_lib_attente = $dbconn_dns->num_rows($query_lib_attente) ;
for ($i=0;$i<$nb_lib_attente;$i++)
{
$lib_attente = $dbconn_dns->fetch_array($i,$query_lib_attente) ;
$libellefr = $lib_attente[libelle_fr];
$idxattente = $lib_attente[idxattente];
echo "<option value = '$idxattente'> $libellefr</option>";
}
?>
<br><br>
<textarea name="new_comment" cols="40" rows="5" wrap="VIRTUAL">
</textarea> |
Partager