Paul,
No problem... If you have any questions, let me know. I am just glad to help.
-------------
--------------------------------------------------------------------------
-------------------------------------------------------------------------------------------------------
-----------------------------------------------------------------------------------
$send_to_email = 'brad@bdwebtech.com';
$subject = "Internet Email Message...";
$message = "Email message... \n\n";
foreach ($HTTP_POST_VARS as $key => $value ) {
$message .= "$key : $value \n";
}
mail ($send_to_email, $subject, $message) or die ("Error!");
?>
Message Sent!
--------------------------------------------------------------------------------------------------------
If you need to sort by $keys, just use the ksort(); function. I have also made these scripts as simple as I could, for readablility. Let me know if you need something more. Don't forget to check out php.net.
Any comments from the e-smith community would be appreciated.