Kirk Parker wrote:
it used the $HTTP_POST_VARS within a loop.
Yep, that's exactly what you need. Just do a
foreach ($HTTP_POST_VARS as $varname => $value)
...
thank you kirk. i'm assuming that within the loop i could do somethng like:
$message .= $varname," ",$value;
then just send $message along with the other mail parameters.