[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
bonjour,

jai un formulaire.
ares sa soumission , jaimerais pouvoir récupérer les noms des champs de mon formulaire.
array_key semble pouvoir récupérer les indexes d'un tableau.
$_POST étant un ntableau contenant les valeurs de mes champs,

puis je faire array_key($_POST) afin de récupérer les indexes?
eske ça marche?

si qqn pouvait méclairer

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
Oui mais c'est array_keys() qu'il faut utiliser...
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
0