Bonjour tout le monde

J'ai une question sur les frame.

page frame
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
 
<html>
<title>toto</title>
 
 
<frameset cols="20%,80%">
<frame src="onglet.php" name="onglet"  scrolling=yes>
<frame src=" name="pageprincipal">
</frameset>
 
</html>
page principal
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
 
<html>
 
<body>
<head>
 
 <b>Base de données CPAI</b><br>
<br><br>
 
<form>
<font color=red>Identifiant:</font>
<br>
<input type=text name=id>
<br>
 
<font color=red>Nom:</font>
<br>
<input type=text name=nom>
<br>
<font color=red>prenom:</font>
<br>
<input type=text name=prenom>
<br>
<font color=red>Date naissance:</font>
<br>
<input type=text name=naissance>
<br>
<font color=red>Age:</font>
<br>
<input type=text name=age>
<br>
<font color=red>Téléphone fixe:</font>
<br>
<input type=text name=telfixe>
<br>
<font color=red>Téléphone portable:</font>
<br>
<input type=text name=telport>
<br>
<font color=red>Situation familliale:</font>
<br>
<select name='situafamil'>
<option value='celibataire'>celibataire</option>
<option value='marie'>marié</option>
<option value='veuf'>veuf(ve)</option>
<option value='concubin'>vivant maritalement</option>
</select>
<br>
<br>
<font color=red>Sex:</font>
 
<select name='sex'>
 
<option value='hom'>Homme</option>
<option value='fem'>Femme</option>
</select>
</form>
</head>
</body>
</html>


je souhaiterai ajouter des pages pour faire des formulaires.

Est il possible de d'ajouter des liens dans l'onglet pour récuperer les page à la même place que "pageprincipal.

Avez vous compris ma question?

Merci

Cordialement

A bientôt