how to capture all fields in the $_POST VARIABLE? into an array?
$_POST
$email = $_POST; $emails = array_keys($email); foreach($emails as $email) {
$_POST is already an array. Why not just pass that?