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?
|
2
|
|
|
|
|
|
Check out the array_keys() function assuming this is PHP. |
||
|
|
|
|
$_POST is just a normal associative array so you can also loop over the entire thing like this:
|
||
|
|
|
|
@Tim: there was a
|
|||
|
|
|
|
|
|||
|
|
|
|
|
||
|
|