I am hoping that you jusst want to add a way for people to contact you via your site.
Step 1: Copy and paste the e-mail Form Code (everything between the <B> and </B> in the top section NOT INCLUDING THE <B>'s!) into a 'contact.php' page (must be a html/php page on a server that allows php!). Copy it to the notepad on your computer and save it as "contact.php" (without the quotation marks
Step 2: Copy n paste the sendeail.php code (everything below the line and between the <I> and </I>onto your notepad. Where is says $myemail delete only that and place your email address there (you@wherever.com) Save the file as 'sendeail.php'
Step 3: Upload both files as ASCII i.e. upload the same way as .html files. Be sure both files are in the same folder on the server. Put them in the same place your main page file is.
Next, create a link or button on your site to go to the "contact.php file.
That should do it. If you actually have an html editor open a blank page in it and create your new pages there. Then when you click "save as" for the pages you have a variety of web page styles to choose from in the file type area. A notepad will do the job though.
DO NOT USE MSWORD OR WORDPAD it will just screw things up!
ps ... you can get a free html editor called HTML-kit at:
http://www.chami.com/html-kit/download/
E-mail Form Code
<B>
<html>
<head>
<title>Email Form </title>
</head>
<body>
<form method="POST" action="sendeail.php">
<!-- DO NOT change ANY of the php sections -->
<?php
$ipi = getenv("REMOTE_ADDR");
$httprefi = getenv ("HTTP_REFERER");
$httpagenti = getenv ("HTTP_USER_AGENT");
?>
<input type=hidden name="ip" value="<?php echo $ipi ?>">
<input type=hidden name="httpref" value="<?php echo $httprefi ?>">
<input type=hidden name="httpagent" value="<?php echo $httpagenti ?>">
Your Name: <input type=text name="visitor" size="35">
<br>
Your Email: <input type=text name="visitormail" size="35">
<br><br>
Mail Message:
<br>
<textarea name=notes rows=4 cols=40></textarea>
<br>
<input type=submit VALUE="Send Mail">
<br>
</form>
</body>
</html>
</B>
<I>
Code for sendeail.php
<html>
<head>
<title>Sendemail Script</title>
</head>
<body>
<!-- You must enter YOUR email address ($myemail shown below).
Then you should check (or modify) the link for the 'next page' (at the bottom) -->
<?php
$myemail = "your@email";
if (!isset($visitormail))
echo "Somebody Goofed $ip" ;
$todayis = date("l, F j, Y, g:i a") ;
$subject = "Visitor Mail" ;
$message = " $todayis [EST] \n
Message: $notes \n
From: $visitor ($visitormail)\n
Additional Info : IP = $ip \n
Browser Info: $httpagent \n
Referral : $httpref \n
";
$from = "From: $myemail\r\n";
if ($myemail != "")
mail($myemail, $subject, $message, $from);
?>
<b><p align=center>
Date: <?php echo $todayis ?>
<br>
Thank You : <?php echo $visitor ?> ( <?php echo $visitormail ?> )
<br>
<?php echo $ip ?>
<br><br>
<a href="contact.php"> Next Page </a>
</body>
</html>
<?I>