Commit 5e16320d by Pham Huy

update form dki tu van

parent f4a8b0ff
...@@ -63,14 +63,14 @@ $message_unsent = "Đã xảy ra lỗi, vui lòng kiểm tra lại."; ...@@ -63,14 +63,14 @@ $message_unsent = "Đã xảy ra lỗi, vui lòng kiểm tra lại.";
$message_sent = "Cảm ơn khách hàng đã đăng ký! Chúng tôi sẽ liên hệ lại sớm nhất."; $message_sent = "Cảm ơn khách hàng đã đăng ký! Chúng tôi sẽ liên hệ lại sớm nhất.";
//user posted variables //user posted variables
$taxcode = $_POST['customer_taxcode']; $taxcode = trim($_POST['customer_taxcode']);
$company = $_POST['customer_company']; $company = trim($_POST['customer_company']);
$address = $_POST['customer_address']; $address = trim($_POST['customer_address']);
$city = $_POST['customer_city']; $city = trim($_POST['customer_city']);
$email = $_POST['customer_email']; $email = trim($_POST['customer_email']);
$name = $_POST['customer_name']; $name = trim($_POST['customer_name']);
$phone = $_POST['customer_phone']; $phone = trim($_POST['customer_phone']);
$message = $_POST['customer_message']; $message = trim($_POST['customer_message']);
$submitted = $_POST['submitted']; $submitted = $_POST['submitted'];
//php mailer variables //php mailer variables
...@@ -80,37 +80,38 @@ $headers = 'From: '. $email . "\r\n" . 'Reply-To: ' . $email . "\r\n"; ...@@ -80,37 +80,38 @@ $headers = 'From: '. $email . "\r\n" . 'Reply-To: ' . $email . "\r\n";
// var_dump($email); // var_dump($email);
$check_form = true; $check_form = true;
if (!validate_taxcode($taxcode) && !empty($taxcode)) { if($submitted == 1){
//taxcode is valid if (!validate_taxcode($taxcode) && !empty($taxcode)) {
// taxcode is valid
form_response("error", $taxcode_invalid); form_response("error", $taxcode_invalid);
$check_form = false; $check_form = false;
} }
if (!filter_var($email, FILTER_VALIDATE_EMAIL) && !empty($email)) { if (!filter_var($email, FILTER_VALIDATE_EMAIL) && !empty($email)) {
//email is valid // email is valid
form_response("error", $email_invalid); form_response("error", $email_invalid);
$check_form = false; $check_form = false;
} }
if(preg_match("/^[0-9]{12}$/", $phone) && !empty($phone)) { if(!preg_match("/^[0-9]{10,12}$/", $phone) && !empty($phone)) {
// $phone is valid // phone is valid
form_response("error", $email_invalid); form_response("error", $phone_invalid);
$check_form = false; $check_form = false;
} }
//validate form to sent mail //validate form to sent mail
if($check_form && $submitted == 1){ if($check_form ){
//validate presence of name and message //validate presence of name and message
if(empty($taxcode) || empty($company) || empty($name) || empty($phone)){ if(empty($taxcode) || empty($company) || empty($name) || empty($phone)){
form_response("error", $missing_content); form_response("error", $missing_content);
} else { } else {
//ready to go! //ready to go!
$content_mail = "Gửi đến từ: Ahoadon.com<br> $content_mail = "Gửi đến từ: ahoadon.com
Khách hàng: ".$name." đã đăng ký tư vấn trở thành đại lý Ahoadon<br> Khách hàng: ".$name." đã đăng ký tư vấn trở thành đại lý Ahoadon
Công ty : ".$company."<br> Công ty : ".$company."
Mã số thuế : ".$taxcode."<br> Mã số thuế : ".$taxcode."
Số điện thoại : ".$phone."<br> Số điện thoại : ".$phone."
Địa chỉ : ".$address."<br> Địa chỉ : ".$address."
Tỉnh/ Thành phố: ".$city."<br> Tỉnh/ Thành phố: ".$city."
Nội dung : ".$message." Nội dung : ".$message."
----------------- -----------------
...@@ -120,6 +121,7 @@ if($check_form && $submitted == 1){ ...@@ -120,6 +121,7 @@ if($check_form && $submitted == 1){
if($sent) form_response("success", $message_sent); //message sent! if($sent) form_response("success", $message_sent); //message sent!
else form_response("error", $message_unsent); //message wasn't sent else form_response("error", $message_unsent); //message wasn't sent
} }
}
} }
get_header(); get_header();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment