$sent = 0; if ($_REQUEST['Submit'] == "Submit") { reset($_REQUEST); foreach($_REQUEST as $request) { if (stristr($request,"Content-Type")) { if(!headers_sent()) { header("HTTP/1.0 403 Forbidden"); } echo "STOP DOING THAT. WE MEAN IT."; exit; } } reset($_REQUEST); $error = 0; if ($_REQUEST['Name'] == "") { $error = 1; } else if ($_REQUEST['Email_Address'] == "") { $error = 1; } else if ($_REQUEST['Subject'] == "") { $error = 1; } else if ($_REQUEST['Comments'] == "") { $error = 1; } if ($error == 0) { /* Prepare Email */ $mailTo = "info@oscarmediagroup.com"; $mailHeaders = "From: ". $_REQUEST['Email_Address'] . "\n"; $mailHeaders .= "Reply-To: " . $_REQUEST['Email_Address'] . "\n"; $mailSubject = $_REQUEST['Subject']; $mailBody = ""; foreach($_REQUEST as $key => $value) { $mailBody .= "$key => $value\n"; } /* Send Mail */ mail($mailTo, $mailSubject, $mailBody, $mailHeaders); $sent = 1; } } ?>
Thank You For Your Inquiry! We will be in contact with you shortly.
} else { ?>By Mail: ( Send all written inquires )
Oscar Media Group, Inc.
1020 N. Hollywood Way, Suite# 158
Burbank, CA 91505
Please direct all inquires to the staff at the Oscar Media Group, Inc
By Email:
Error! Required Fields Were Not Filled Out!
"; } ?> } ?>