我在簡單的HTML/PHP/CSS網站上有一個聯繫表單,我想允許人們發送他們的聯繫信息,即使他們沒有提交他們的電子郵件。聯繫表單 - 輸入的電子郵件地址無效! - 允許它通過
但一切我想,當我通過聯繫表單提交的消息,它要麼返回一些錯誤,或者返回以下錯誤:「無效的電子郵件地址進入」
這裏是我的contactprocess.php
<?php
include("../config.php");
if(!$_POST) exit;
$email = $_POST['Email_Address'];
$error ="";
$errors ="";
if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
$error.="Invalid email address entered!";
$errors=1;
}
if($errors==1) echo $error;
else{
$values = array ('Link','Quantity','Your_Message');
$required = array('Link','Quantity','Your_Message');
$email_subject = "The Message";
$email_content = "new message:\n";
foreach($values as $key => $value){
if(in_array($value,$required)){
if ($key != 'subject' && $key != 'company') {
if(empty($_POST[$value])) { echo 'PLEASE FILL IN REQUIRED FIELDS'; exit; }
}
$email_content .= $value.': '.$_POST[$value]."\n";
}
}
if(@mail($your_email,$email_subject,$email_content)) {
header('Location: http://example.com');
} else {
echo 'ERROR!';
}
}
?>
我敢肯定,這是一個簡單的編輯,但我不能弄清楚。
只是匹配電子郵件字段與一些正則表達式來驗證電子郵件。 –
Noob問題 - 我該怎麼做? :) – Overloard