Great for testing what is being sent to a page, add this first to show what is being collected….
1 2 3 4 5 6 7 8 9 10 11 |
$count=0; foreach ($_POST as $key => $value) { $field[$count] = $value; $count++; } echo "<br>my1".$field[0]; echo "<br>my2".$field[1]; echo "<br>my3".$field[2]; |