23 lines
848 B
PHP
23 lines
848 B
PHP
<form id="formData">
|
|
<legend id="titre_formData">Ajouter des données</legend>
|
|
<table class="table table-responsive table-condensed">
|
|
<tbody>
|
|
<tr>
|
|
<td width="5%" align="center" class="required">Produit</td>
|
|
<td width="50%">
|
|
<select name="codeProduit" id="codeProduit" class="form-control" required AUTOCOMPLETE="OFF" autofocus>
|
|
<?= liste_options($produit,'',false) ?>
|
|
</select>
|
|
</td>
|
|
|
|
<td width="5%" align="center" class="required">Medicament</td>
|
|
<td width="50%">
|
|
<select name="codeMedicament" id="codeMedicament" class="form-control">
|
|
<?= liste_options($medicament,'',false) ?>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|