23 lines
867 B
PHP
Executable File
23 lines
867 B
PHP
Executable File
<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 colspan="2">
|
|
<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">Garantie</td>
|
|
<td colspan="2">
|
|
<select name="codeGarantie" id="codeGarantie" class="form-control" required AUTOCOMPLETE="OFF" >
|
|
<?= liste_options($garantie,'',false) ?>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|