Avec la méthode POST, comment fait on pour récupérer les variables dans un autres fichier ?
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 <FORM id="ajout" name="ajout1" action="ajouter.php" method="POST" encType="multipart/form-data"> <tr> <td> Nom </td> <td> <input type="text" name="nom"> </td> </tr> <tr> <td> Photo </td> <td> <input type="hidden" name="MAX_FILE_SIZE" value="1500000"> <input type="file" name="photo"> </td> </tr> <tr> <td colspan="2"> </td> </tr> <tr align="center"> <td colspan="2"> <input type="submit" value="Ajouter"> </td> </tr> </form> </table>
Partager