At 2/13/09 07:18 AM, smulse wrote:
At 2/13/09 02:06 AM, 792247 wrote:
link
http://www.w3schools.com/PHP/php_mail.as p
(#1 result via google)
code not working. Pressing submit does nothing. I'm not sure if I did something wrong? I don't know much about PHP just the basics, I actually just bought a book on it but haven't read anything yet.
Thanks,
Nick Polyz
<?php
function spamcheck($field)
{
//filter_var() sanitizes the e-mail
//address using FILTER_SANITIZE_EMAIL
$field=filter_var($field, FILTER_SANITIZE_EMAIL);
//filter_var() validates the e-mail
//address using FILTER_VALIDATE_EMAIL
if(filter_var($field, FILTER_VALIDATE_EMAIL))
{
return TRUE;
}
else
{
return FALSE;
}
}
if (isset($_REQUEST['email']))
{//if "email" is filled out, proceed
//check if the email address is invalid
$mailcheck = spamcheck($_REQUEST['email']);
if ($mailcheck==FALSE)
{
echo "Invalid input";
}
else
{//send email
$email = $_REQUEST['email'] ;
$subject = $_REQUEST['subject'] ;
$message = $_REQUEST['message'] ;
mail("nick@nickpolyz.com", "Subject: $subject",
$message, "From: $email" );
echo "Thank you, an email has been sent.";
}
}
else
{//if "email" is not filled out, display the form
echo "<form method='post' action='mailform.php'>
Email: <input name='email' type='text' /><br />
Subject: <input name='subject' type='text' /><br />
Message:<br />
<textarea name='message' rows='15' cols='40'>
</textarea><br />
<input type='submit' />
</form>";
}
?>