24 lines
1.0 KiB
PHP
24 lines
1.0 KiB
PHP
<form id="formData">
|
|
<legend id="titre_formData">Modification des données</legend>
|
|
<INPUT class="sr-only" TYPE="text" id = "id" name = "id" value="<?=$exclusionmedicamentproduit['id']?>">
|
|
<table class="table table-responsive table-condensed">
|
|
<tbody>
|
|
<tr>
|
|
<td width="5%" align="center">Produit</td>
|
|
<td width="50%">
|
|
<select name="codeProduit" id="codeProduit" class="form-control" required AUTOCOMPLETE="OFF" autofocus>
|
|
<?= liste_options($produit,$this->nettoyer($exclusionmedicamentproduit['codeProduit']),true) ?>
|
|
</select>
|
|
</td>
|
|
|
|
<td width="5%" align="center">Medicament</td>
|
|
<td width="50%">
|
|
<select name="codeMedicament" id="codeMedicament" class="form-control">
|
|
<?= liste_options($medicament,$this->nettoyer($exclusionmedicamentproduit['codeMedicament']),true) ?>
|
|
</select>
|
|
</td>
|
|
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|