1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
| <form method="post" action="#" name="form">
<table class="listcli"><tr><td>Rechercher</td>
<td>
<select name="choisir">
<option value="0">-----Choisir la recherche à effectuer-----</option>
<option value="1">Client par le nom</option>
<option value="2">Client par le numéro de compte</option>
<option value="3">Clients ayant un compte chèque</option>
<option value="4"> Clients ayant un compte épargne</option>
</select>
</td>
<td>
<input type="text" name="element" />
</td>
<td>
<input type="submit" name="rechercher" value="Rechercher" />
</td>
</tr>
</table>
</form> |