If you want help making on online form so visitors send you emails directly from your website, then please view this tutorial page.
If you want to update your existing email form, simply copy the first FORM tag, and paste it over your current FORM tag. You will also need to copy each INPUT tag which says type="hidden".
I apologize, but we do not support any site design or coding.
You can create your own custom online forms using a form generator, like phpFormGenerator (found in Fantastico).
Please see important information on how to use phpFormGenerator, as it requires special setup to get working.
What is a FORM tag? This is a form tag, starting with the less-than symbol and ending with the greater-than symbol, and it says "form, action equals something, method equals something".



<?PHP
// on some servers you need to add this code in order to work without problems
$firstName = $_REQUEST["firstName"];
$lastName = $_REQUEST["lastName"];
$theCompany = $_REQUEST["theCompany"];
$thePhone = $_REQUEST["thePhone"];
$theEmail = $_REQUEST["theEmail"];
$theMessage = $_REQUEST["theMessage"];
$to = "myname@mydomain.com";
$subject = "Contact Form";
$message = "First Name: " . $firstName;
$message .= "\nLast Name: " . $lastName;
$message .= "\nCompany: " . $theCompany;
$message .= "\nPhone Number: " . $thePhone;
$message .= "\nEmail: " . $theEmail;
$message .= "\nIP Adress: " . $_SERVER['REMOTE_ADDR'];
$message .= "\nBrowser: " . $_SERVER['HTTP_USER_AGENT'];
$message .= "\n\nMessage: " . $theMessage;
$headers = "From: $theEmail";
$headers .= "\nReply-To: $theEmail";
$sentOk = mail($to,$subject,$message,$headers);
echo "sentOk=" . $sentOk;
?>