Forum Moderators: coopster
[webmasterworld.com...]
I solved this by storing the data from the $_REQUEST array into a string and then emailing the string... kinda simple really!
<?php
$string = '';
foreach ($_REQUEST as $value) {
$string .= $value.'<br>';
}
// OUTPUT STRING USED FOR EMAIL
echo $string;
?>
[edited by: Bingo at 9:34 am (utc) on June 20, 2008]