vote up 1 vote down star
2
echo $_POST["name"]; //returns the value a user typed into the "name" field

I would like to be able to also return the text of the key. In this example, I want to return the text "name". Can I do this?

flag

5 Answers

vote up 10 vote down check

Check out the array_keys() function assuming this is PHP.

http://us2.php.net/array_keys

link|flag
vote up 2 vote down

$_POST is just a normal associative array so you can also loop over the entire thing like this:

foreach($_POST as $key=>$value)
{
  echo "$key=$value";
}
link|flag
vote up 1 vote down

@Tim: there was a ) missing. so it should be:

while( list( $field, $value ) = each( $_POST )) {
   echo "<p>" . $field . " = " . $value . "</p>\n";
}
link|flag
vote up 0 vote down
array_keys($_POST)

Manual

link|flag
vote up 0 vote down
while( list( $field, $value ) = each( $_POST ) {
   echo "<p>" . $field . " = " . $value . "</p>\n";
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.