I'm assuming you want the info that users enter into that form to be sent to an email address? If so and assuming you've got PHP working, make the action in the <form> tag:
PHP Code:
<?php echo $_SERVER['PHP_SELF']; ?>
and then put this code right above the <form> tag:
PHP Code:
<?php
if (count($_POST) > 0)
{
$email_msg = "";
foreach ($_POST as $k => $v)
$email_msg .= "$k: $v\r\n";
if (@mail("the@receipient.com", "The Email's Subject", $email_msg))
echo "Mail sent.";
else
echo "There was a problem sending the email.";
}
?>
Then make sure the file that has all this in it has a .php extension. This is a very simple solution.
If you don't have PHP support, tell us what scripting languages you do have support for.