Please fill in the following required fields (marked in red below):
"; ## List your required fields below! $required[] = "email"; $required[] = "name"; $required_flag = "*"; ## Ignore these fields $ignore = array(); $ignore[] = "PHPSESSID"; $ignore[] = "submit"; $ignore[] = "submit_x"; $ignore[] = "submit_y"; ## Include yer functions require("includes/php/func-forms.aspx"); ## Clear out the errors $errors = false; if($_POST['submit']){ ## Checking to see if the required fields are filled in for ($i=0; $i < count($required); $i++){ if($_POST[$required[$i]] == ""){ $errors = true; ## Building the error message $error_message_bits[] = labelMaker($required[$i], $field_prefix); $blank[] = $required[$i]; } } $error_message .= (count($error_message_bits) > 0) ? implode(", ",$error_message_bits) : ''; } if($errors == false && $_POST['submit']){ ## Uncomment the following line to see all the data passed by the form //echo "
"; print_r($_POST); echo "
"; ## Format data passed by the form so that it displays perty in the e-mail and on the screen $display_message = "\n"; $admin_message .= $message; //echo "
"; print($message); echo "
"; ## Send notification e-mail to admin. require("includes/php/class.Mail.aspx"); $mailer = &new Email; $mailer->ToMail = $email_to; if($test_mode == true){ $mailer->ToMail = $test_email; } $mailer->FromMail = $from_email; $mailer->FromName = $from_name; $mailer->Subject = $admin_subject; $mailer->Message = $admin_message; $mailer->SendMail(); ## If customer provided an e-mail, send a confirmation. if($customer_email == true && $send_customer_confirmation == true){ $confirm_mailer = &new Email; $confirm_mailer->ToMail = $from_email; if($test_mode == true){ $confirm_mailer->ToMail = $test_email; } $confirm_mailer->FromMail = $admin_email; $confirm_mailer->FromName = $site_name; $confirm_mailer->Subject = $customer_subject; $confirm_mailer->Message = $customer_message; $confirm_mailer->SendMail(); } } ?> Barker Lemar

Contact Request Submitted to

Thank you for your interest in . A representative should be in touch with you soon.
« Previous page

On-Line Surverys - Contact Us

All fields marked with a red asterisk () are required.