HI! Is there a way to get array indexes from $_POST. I need it because i would like to write php code which would echo Field name=Field value (for example name=$_POST["name"] but from any form submited (don't know indexes) to that php. THX very much
You can use print_r to print out the entire array, or, use a foreach loop: www.php.net/print_r www.php.net/foreach Jay
Wow. I'm shocked at the advice people give on here. if (is_array($_POST)) { foreach ($_POST as $key=>$value) { echo $key.'='.$value.'<br />'; } } PHP: