window.onload = function(){
function handleinput(){
if(document.loginform.first_name.value == “”){
document.getElementById(“first_nameError”).innerHTML = “You must enter a Name”;
return false;
}
if(document.loginform.last_name.value == “”){
document.getElementById(“last_nameError”).innerHTML = “You must enter a Last Name”;
return false;
}
if(document.loginform.b_name.value == “”){
document.getElementById(“b_nameError”).innerHTML = “You must enter a Business Name”;
return false;
}
if(document.loginform.email.value == “”){
document.getElementById(“emailError”).innerHTML = “You must enter a Email”;
return false;
}
}
document.getElementById(“loginform”).onsubmit = handleinput;
}
[insert_php]if(isset($_POST[‘submit’])){
$to = get_bloginfo(‘admin_email’); // this is your Email address
$from = $_POST[’email’]; // this is the sender’s Email address
$first_name = $_POST[‘first_name’];
$last_name = $_POST[‘last_name’];
$b_name = $_POST[‘b_name’];
$subject = “Form submission”;
$subject2 = “Copy of your form submission”;
$message = $first_name .”\n\n” . “Last Name ” . $last_name .”\n\n” . ” Business Name:” . $_POST[‘b_name’] ;
$headers = “From:” . $from;
$headers2 = “From:” . $to;
mail($to,$subject,$message,$headers);
mail($from,$subject2,$message2,$headers2); // sends a copy of the message to the sender
echo “Mail Sent. Thank you ” . $first_name . “, we will contact you shortly.”;
// You can also use header(‘Location: thank_you.php’); to redirect to another page.
}
[/insert_php]