<?
//get all the inputs from all of the forms
$i=0;
if (!is_array($HTTP_POST_VARS))
return;
reset($HTTP_POST_VARS);
while(list($key, $val) = each($HTTP_POST_VARS)) {
$GLOBALS[$key] = $val;
$val=stripslashes($val);
echo("$key: $value<br>");
$message = $message. "$key = $val\n";
}
//mail everything off to admin
$mailto= "whoever@whatever.com";
$subject= "";
$from= "you";
$message= "$message";
mail( "$mailto", "$subject", "$message", "From: $email");
?>
rgds,
scott d~