|
<form action="send.php" method="POST">
<input type="text" name="var1">
<input type="submit" value="submit">
</form>
then in the page entitled "send.php" you would put the following:
<?PHP
$var1 = $_POST['var1'];
mail("to@youremail.com", "subject", "message");
?>
__________________
"If you say something interesting, people will remember your name" ~ Anonymous
Please login or register to view this content. Registration is FREE. asp <- Irony
|