[php] formulaire-array_key($_POST)
Fermé
mathieu
-
13 juil. 2005 à 19:21
jisisv Messages postés 3645 Date d'inscription dimanche 18 mars 2001 Statut Modérateur Dernière intervention 15 janvier 2017 - 14 juil. 2005 à 06:19
jisisv Messages postés 3645 Date d'inscription dimanche 18 mars 2001 Statut Modérateur Dernière intervention 15 janvier 2017 - 14 juil. 2005 à 06:19
A voir également:
- [php] formulaire-array_key($_POST)
- Formulaire de réclamation facebook - Guide
- Easy php - Télécharger - Divers Web & Internet
- Formulaire instagram compte suspendu - Guide
- Confirmer le nouvel envoi du formulaire err_cache_miss - Forum Google Chrome
- Confirmation de l'envoi d'un formulaire html ✓ - Forum HTML
1 réponse
jisisv
Messages postés
3645
Date d'inscription
dimanche 18 mars 2001
Statut
Modérateur
Dernière intervention
15 janvier 2017
934
14 juil. 2005 à 06:19
14 juil. 2005 à 06:19
Oui mais c'est array_keys() qu'il faut utiliser...
Ceci fontionne très bien:
Johan
Ceci fontionne très bien:
johand@horus:~/public_html$ cat array_keys01.html <html> <body> <form action="array_keys.php" method="post"> <input type="hidden" name="cache01" value="junk"> <input type="hidden" name="cache02" value="junk"> <input type="submit" name="thebutton" value="OK"> </form> </body> </html> johand@horus:~/public_html$ cat array_keys.php <?php print("<pre>"); print_r(array_keys($_POST)); print("</pre>"); ?>
Johan