> The easiest way to do this would be to have your survey be a basic HTML
> page. Then use a single PHP processing page. You could just write the value
> of $_POST to a variable and send that in your email.
> $string = implode("\n",$_POST);
> mail($to,$subject,$string);Correct me if I'm mistaken but couldn't you get the same result simply by setting the form's action to be a "mailto:"? Chris -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

