I have the following code to find all the values of an array and echo them...
foreach($_POST as $result) {
echo $result;
}
But I want to be able to find the name of the array item too such as...
foreach($_POST as $result) {
echo "The value of $thing is $result";
}
Does this make any sense? Sorry
Thanks in advance,
Ben