Using print_r for troubleshooting:
With this code:
echo '<pre>';
print_r($_POST,false);
echo '</pre>';
I get this:
Array
(
[firstname] => john
[lastname] => smith
[Submit] => Submit
)
I'd like to strip out the Array stuff and only get the values, I still only use print_r():
john
smith
Submit
Is this possible??