Get values in loop from $_POST


foreach($_POST as $key=>$value)
{
if(!in_array($key, $skip_list)) {
$message = $message . $key .”: ” . $value . “\n”;
}
}

$email = “email id”;

$from_address = “From id”;

$subject = “Email Subject”;

mail($email, $subject, $message,”FROM: “.$from_address);

Advertisement

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s