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

22 lines
1.2 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="<?=$ville['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="codeVille" NAME="codeVille" required AUTOCOMPLETE="OFF" autofocus value="<?= $this->nettoyer($ville['codeVille']); ?>" ></td>
<td width="5%" align="center" class="required">Libellé</td>
<td width="30%" ><INPUT class="form-control majuscule" TYPE="text" id="libelle" NAME="libelle" required AUTOCOMPLETE="OFF" value="<?= $this->nettoyer($ville['libelle']); ?>"></td>
<td width="5%" align="center" class="required">Type</td>
<td width="20%">
<select name="codePays" id="codePays" class="form-control" required AUTOCOMPLETE="OFF" >
<?= liste_options($pays,$this->nettoyer($ville['codePays']),true) ?>
</select>
</td>
</tr>
</tbody>
</table>
</form>