24 lines
1001 B
PHP
24 lines
1001 B
PHP
<form id="formData">
|
|
<legend id="titre_formData">Modification des données</legend>
|
|
<INPUT class="sr-only" TYPE="text" id = "id" name = "id" value="<?=$exclusionacteproduit['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($exclusionacteproduit['codeProduit']),true) ?>
|
|
</select>
|
|
</td>
|
|
|
|
<td width="5%" align="center">Acte</td>
|
|
<td width="50%">
|
|
<select name="codeActe" id="codeActe" class="form-control">
|
|
<?= liste_options($acte,$this->nettoyer($exclusionacteproduit['codeActe']),true) ?>
|
|
</select>
|
|
</td>
|
|
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|