Bonjour a tous ,
je travail sur une app web gestion de stagiaires , j'ai créer 3 pages la première qui fait l'inscription du stagiaires et la deuxième pour modifier les informations , et la troisième qui fait l'affichage des résultats enregistrer dans la base de données , tous marche très bien , maintenant je veux créer un formulaire dans la partie qui l'affichage qui va me permettre de chercher un stagiaire avec une sélection de checkbox
voila le formulaire :
Code html : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27 <form method="POST"> <div style="display:none;" name="searchTech" id="searchTech" class="hide" > <label > Languages : </label> <td><input type="checkbox" name="chkl[ ]" value="php"> PHP </input> <input type="checkbox" name="chkl[ ]" value="javascript"> Javascript <input type="checkbox" name="chkl[ ]" value="python"> Python</input></br> <label > Frameworks : </label> <input type="checkbox" name="chkl[ ]" value="django"> Django</input> <input type="checkbox" name="chkl[ ]" value="laravel"> Laravel</input></br> <label > Database : </label> <input type="checkbox" name="chkl[ ]" value="sql">SQL</input> <input type="checkbox" name="chkl[ ]" value="oracle"> Oracle</input> <input type="checkbox" name="chkl[ ]" value="postgersql"> PostgreSql</input></br> </div> <button style="display:none;" type="search" name="searchTechbtn" id="searchTechbtn" class="btn btn-primary mr-2">Chercher Par Technologie </button> </form>
comment faire svp ?
et merci
Partager