Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

get name of a post variable [duplicate]

Tags:

post

php

Possible Duplicate:
PHP $_POST print variable name along with value

I have a form (whatever number of fields).. this form will send $_POST data.. I want to return every $_POST variable value and name.

I wanna do soemthing like this :

foreach($_POST as $field){
    //****some code*****//
}

in a way that will display the fields and values like this:

name : Simo Taqi
email : [email protected]

in other words :

if I have a post variable : $_POST['city']='las vegas'

I want to know how to get the name of the variable : 'city'.

like image 350
SmootQ Avatar asked Aug 23 '11 15:08

SmootQ


1 Answers

$_POST is populated as an associative array, so you can just do this:

foreach ($_POST as $name => $val)
{
     echo htmlspecialchars($name . ': ' . $val) . "\n";
}

Additionally, if you're just interested in the field names, you can use array_keys($_POST); to return an array of all the keys used in $_POST. You can use those keys to reference values in $_POST.

foreach (array_keys($_POST) as $field)
{
    echo $_POST[$field];
}
  • foreach documentation
  • array_keys documentation
like image 54
Jimmy Sawczuk Avatar answered Oct 02 '22 01:10

Jimmy Sawczuk