Phone: (262) 547-5402
NOTE: In efforts to keep e-mail SPAM to a minimum, I do not publicly list my e-mail address anywhere on the website. If you wish to contact me, please use the provided form on this page or phone directly.
You
may phone, fax or complete the form below if you are interested in learning
more about any of Dr. Hal and Sounds We Make LLC services or products
(* = Required information on form)
";
$message = $mail_company." \n";
$message .= "The information below has been submitted using your web site contact form \n\n";
$message .= "Name: $contactname \n";
$message .= "Organization: $contactcompany \n\n";
$message .= "Address: $contactaddress1 \n";
$message .= " $contactaddress2 \n";
$message .= "City: $contactcity \n";
$message .= "State: $contactstate \n";
$message .= "Country: $contactcountry \n";
$message .= "Zip: $contactzip \n\n";
$message .= "Phone: $contactphone \n";
$message .= "Email: $contactemail \n\n";
$message .= "Comments: ".$_POST['contact_comments']." \n";
$parameters = '-f '.$mail_sendfrom;
$headers = 'From: '.$sendfrom."\r\n" ;
if(strlen($contactemail) > 5) { $headers .= 'Cc: ' . $contactemail . "\r\n" ; }
$headers .= 'Bcc: adam@ocreativedesign.com' . "\r\n" ;
$headers .= 'Reply-To: '.$mail_company.' <'.$mail_sendfrom.'>' . "\r\n" ;
$headers .= 'X-Mailer: PHP/' . phpversion();
if (!isset($_POST['ACTION'])) {
echo "
SERVER ERROR
There was an error processing your SUBMIT request, please go back and re-submit the form.
";
} elseif (!isset($_POST['ACTION']) || $_SERVER['REQUEST_METHOD'] != "POST") {
echo "SERVER ERROR
There was an error processing your POST request, please go back and re-submit the form.
";
}
else {
$exploits = "/(content-type|bcc:|cc:|document.cookie|onclick|onload|javascript|alert|href|url]|link])/i";
$profanity = "/(bitch|slut|beastial|bestial|blowjob|clit|cock|cum|cunilingus|cunillingus|cunnilingus|cunt|ejaculate|fag|felatio|fellatio|fuck|fuk|fuks|gangbang|gangbanged|gangbangs|hotsex|jism|jiz|kock|kondum|kum|kunilingus|orgasim|orgasims|orgasm|orgasms|phonesex|phuk|phuq|porn|pussies|pussy|spunk|xxx)/i";
$spamwords = "/(viagra|phentermine|tramadol|adipex|advai|alprazolam|ambien|ambian|amoxicillin|antivert|blackjack|backgammon|texas|holdem|poker|carisoprodol|ciara|ciprofloxacin|debt|dating|porn)/i";
$bots = "/(Indy|Blaiz|Java|libwww-perl|Python|OutfoxBot|User-Agent|PycURL|AlphaServer)/i";
$sendmessage = true;
if (preg_match($bots, $_SERVER['HTTP_USER_AGENT'])) {
exit("Known spam bots are not allowed.
");
}
foreach ($_POST as $key => $value) {
$value = trim($value);
if (preg_match($exploits,$value)) {
echo ("Value = {".$value."}
");
$sendmessage = false;
exit("SERVER ERROR
There was an error processing your request due to a potential form exploit. Please go back and re-submit the form.
");
} elseif (preg_match($profanity,$value) || preg_match($spamwords,$value)) {
echo ("Value = {".$value."}
");
$sendmessage = false;
exit("SERVER ERROR
There was an error processing your request due to the use of profanity or spam flags. Please go back and re-submit the form.
");
}
$_POST[$key] = stripslashes(strip_tags($value));
}
if($sendmessage) {
mail( $sendto, $subject, $message, $headers, $parameters );
echo('Message Successfully Sent!
Thank you for emailing '.$mail_company.'. Have a great day!
' );
}
}
} else { ?>