In order for the info to be sent back to you via HTML, you need something like PHP or PERL to interpret the form data. I'm guessing you don't know a lot about CGI. Look to see if on your host you can use PHP, if so use
Code:
<?php echo $_POST['E_MAIL']; ?>
for example to display what was put into the email form. Here is a simple tutorial on how to use the $_POST var.
|