Bonjour,

J'ai une liste principale qui contient 4 éléments.

Chaque choix d'option principal (1,2, 3 ou 4), genere trois listes correpondantes qui viendrons s'afficher au-dessous et chaqu'une contient des choix dépendants.

Comment réaliser cela ?

Merci.

Code : 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<div align="center">
	<div align="center">
		<table border="2" width="50%" bordercolor="#0000FF" style="border-collapse: collapse">
			<tr>
				<td bgcolor="#0000FF">
				<p align="center"><font color="#FFFFFF" face="Tahoma" size="2">Lister 
				les intervenants</font></p>
				</td>
			</tr>
			<tr>
				<td width="99%">
				<form method="POST" action="action.php">
					<table border="0" width="100%">
						<tr>
							<td><font face="Tahoma" size="2">Lister les intervenants
							</font></td>
							<td><select name="S">
							<option selected="selected">Selectionner</option>
							<option>Par Ecole</option>
							<option>Par Discipline</option>
							<option>Par Localisation</option>
							<option>Par Circonscription</option>
							</select> </td>
						</tr>
					</table>
				</form>
				</td>
			</tr>
		</table>
	</div>
	<p>&nbsp;</p>
	<table border="2" width="50%" bordercolor="#0000FF" style="border-collapse: collapse">
		<tr>
			<td bgcolor="#0000FF">
			<p align="center"><font color="#FFFFFF" face="Tahoma" size="2">Lister 
			les intervenants</font></p>
			</td>
		</tr>
		<tr>
			<td width="99%">
			<form method="POST" action="action.php">
				<table border="0" width="100%">
					<tr>
						<td><font face="Tahoma" size="2">Lister les intervenants
						</font></td>
						<td><select>
						<option selected="selected">Par Ecole</option>
						<option>Discipline</option>
						<option>Localisation</option>
						<option>Circonscription</option>
						</select> </td>
					</tr>
					<tr>
						<td><font face="Tahoma" size="2">Trié par</font> </td>
						<td><select size="1" name="D2">
						<option selected="selected">Nom</option>
						<option>Numero</option>
						</select> </td>
					</tr>
					<tr>
						<td><font face="Tahoma" size="2">Sigle </font></td>
						<td><select size="1" name="D3">
						<option selected="selected">EMC</option>
						<option>EPC</option>
						<option>ECU</option>
						</select></td>
					</tr>
					<tr>
						<td><font face="Tahoma" size="2">Ecole</font></td>
						<td><select size="1" name="D4">
						<option selected="selected">Indéfférent</option>
						<option>E1</option>
						<option>E2</option>
						<option>E3</option>
						<option>E4</option>
						</select> </td>
					</tr>
					<tr>
						<td>&nbsp;</td>
						<td>
						<input type="submit" value="OK" name="B1" style="float: right"></td>
					</tr>
				</table>
			</form>
			</td>
		</tr>
	</table>
</div>