Im a complete novice on computers yet i've managed with time to put together a website. However i just cant for the life of me find how to add a contact page where the reader simply fills in a form and presses send.
This would i guess send me an email/querie without having to go away from my site...please please please could someone be so kind as to advice or help?
Regards
A-J
I tried searching this at the KB but I can't find anyone. This should be just an easy modification. Good luck.
Forget about using the EasySite Wizard go to Tizag.com and work your way through ALL the tutorials there. Then at some point the 'Form to Email' script below will make sense.
<html>
<body>
<?php
if (isset($_REQUEST['email']))
//if "email" is filled out, send email
{
//send email
$email = $_REQUEST['email'] ;
$subject = $_REQUEST['subject'] ;
$message = $_REQUEST['message'] ;
mail("someone@example.com", $subject,
$message, "From:" . $email);
echo "Thank you for using our mail form";
}
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>";
}
?>
</body>
</html>