Bonjour à tous,
je n'arrive pas à passer des paramétres dans un formulaire HTML via PHP. Et en plus en prennant la méthode GET, j'ai tous les paramétres en clair dans mon URL.
Voici le code du formulaire :
Et voici le code du php appelé :
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 <form id="form1" name="form1" method="GET" action="../html/connexion.php"> <table width="400" border="1" align="center" cellspacing="0" bordercolor="#000000"> <tr> <td height="23" background="../img/barretitre.gif"><span class="Style1"> <img src="../img/lock.gif" width="16" height="16" /> Connexion au serveur</span></td> </tr> <tr> <td><table width="100%" border="0"> <tr> <td width="8%"><span class="Style15"></span></td> <td width="33%"><span class="Style15"></span></td> <td width="4%"><span class="Style15"></span></td> <td width="55%"><span class="Style15"></span></td> </tr> <tr> <td><span class="Style15"></span></td> <td><span class="Style18">Votre compte </span></td> <td><span class="Style15"></span></td> <td><span class="Style15"> <input name="USER_AD" type="text" id="USER_AD" size="21" /> </span></td> </tr> <tr> <td><span class="Style15"></span></td> <td><span class="Style15"></span></td> <td><span class="Style15"></span></td> <td><span class="Style15"></span></td> </tr> <tr> <td><span class="Style15"></span></td> <td><span class="Style18">Votre mot de passe </span></td> <td><span class="Style15"></span></td> <td><span class="Style15"> <input name="USER_PASS" type="password" id="USER_PASS" size="23" /> </span></td> </tr> <tr> <td> </td> <td> </td> <td> </td> <td> </td> </tr> <tr> <td colspan="4"><div align="center"><a href="../html/connexion.php"> <input type="submit" name="Submit" value="Envoyer" /> </a></div></td> </tr> <tr> <td><span class="Style15"></span></td> <td><span class="Style15"></span></td> <td><span class="Style15"></span></td> <td><span class="Style15"></span></td> </tr> </table></td> </tr> </table> </form>
Merci à la communauté!
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 <HTML> <BODY> <?php echo "STP001"; $tmp=$_GET['USER_AD']; echo "STP002"; echo $tmp; echo "STP003"; echo "$_GET['USER_AD'] ($_GET['USER_PASS'])"; echo "STP004"; ?> </BODY> </HTML>
Partager