Is there a way to traverse an array such as $_POST to see the field names and not just the values. To see the values I do something like this.

foreach ($_POST as $value){
echo $value;
}

This will show me the values - but I would like to also display the names in that array. If my $_POST value was something like $_POST['something'] and it stored 55; I want to output "something".

I have a few select fields that I need this for.

link|improve this question

Perfect! I knew there had to be something other than $value. – and_27_y Sep 1 '11 at 22:29
feedback

5 Answers

up vote 5 down vote accepted

You mean like this?

foreach ( $_POST as $key => $value )
{
  echo "$key : $value <br>";
}

you can also use array_keys if you just want an array of the keys to iterate over.

You can also use array_walk if you want to use a callback to iterate:

function test_walk( &$value, $key )
{
  ...do stuff...
}

array_walk( $arr, 'test_walk' );
link|improve this answer
+1 for also mentioning array_keys – David Souther Sep 1 '11 at 22:28
feedback
foreach ($_POST as $key => $value) {
  echo $key; // Field name
}

Or use array_keys to fetch all the keys from an array.

link|improve this answer
feedback
foreach ($_POST as $key => $value){
    echo $key.': '.$value.'<br />';
}
link|improve this answer
feedback

If you just want the keys:

foreach (array_keys($_POST) as $key)
{
    echo $key;
}

Or...

foreach ($_POST as $key => $value)
{
    echo $key;
}

If you want both keys and values:

foreach ($_POST as $key => $value)
{
    echo $key, ': ', $value;
}
link|improve this answer
feedback

For just the keys:

$array = array_keys($_POST);

Output them with:

var_dump($array);

-or-

print_r($array);

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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