prestation/Vue/Ajaxtbmodifierspecialite/index.php
2025-12-01 18:54:33 +00:00

18 lines
1.1 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="<?=$specialite['id']?>">
<table class="table table-responsive table-condensed">
<tbody>
<tr>
<td width="5%" align="center" class="required">Code</td>
<td width="10%" ><INPUT class="form-control majuscule" TYPE="text" id="codeSpecialite" NAME="codeSpecialite" required AUTOCOMPLETE="OFF" autofocus value="<?= $this->nettoyer($specialite['codeSpecialite']); ?>" ></td>
<td width="5%" align="center" class="required">Libellé</td>
<td width="25%" ><INPUT class="form-control majuscule" TYPE="text" id="libelle" NAME="libelle" required AUTOCOMPLETE="OFF" value="<?= $this->nettoyer($specialite['libelle']); ?>"></td>
<td width="5%" align="center">Libellé Eng</td>
<td width="25%" ><INPUT class="form-control majuscule" TYPE="text" id="libelleEng" NAME="libelleEng" value="<?= $this->nettoyer($specialite['libelleEng']); ?>"></td>
</tr>
</tbody>
</table>
</form>