Brandon
07-08-2003, 05:49 PM
<?
$email = $_REQUEST['email'] ;
$message = $_REQUEST['message'] ;
$name = $_REQUEST['name'] ;
mail( "thejagxj220@hotmail.com", "Email Form",
$message, "From: $name <$email>" );
header( "Location: thankyou.html" );
?>
that file is called emailform.php
on a html page i wanna make a form that makes that work.
$email = $_REQUEST['email'] ;
$message = $_REQUEST['message'] ;
$name = $_REQUEST['name'] ;
mail( "thejagxj220@hotmail.com", "Email Form",
$message, "From: $name <$email>" );
header( "Location: thankyou.html" );
?>
that file is called emailform.php
on a html page i wanna make a form that makes that work.