1

试图让这个联系表工作,不知道发生了什么。这是HTML:

   <form id="contact-form" action="contact.php">
      <input type="text" class="form-control" placeholder="Your Name" name="name" />
      <input type="text" class="form-control" placeholder="Email" name="email" />
      <input type="text" class="form-control" placeholder="Phone Number" name="phone" />
      <input type="submit" class="btn btn-jackalope btn-centered">Request Quote</input>
    </form>

这是我正在使用的contact.php:

<?php
/*
* Contact Form Class
*/


header('Cache-Control: no-cache, must-revalidate');
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
header('Content-type: application/json');

$admin_email = 'mcollinsblog@gmail.com'; // Your Email
//$message_min_length = 0; // Min Message Length


class Contact_Form{
function __construct($details, $email_admin, $message_min_length){

    $this->name = stripslashes($details['name']);
    $this->email = trim($details['email']);
    $this->phone = trim($details['phone']);
    $this->subject = 'Contact from Your Website'; // Subject 
    $this->message = stripslashes($details['message']);

    $this->email_admin = $email_admin;
    $this->message_min_length = $message_min_length;

    $this->response_status = 1;
    $this->response_html = '';
}


private function validateEmail(){
    $regex = '/^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}    (?:\.[a-z]{2})?)$/i';

    if($this->email == '') { 
        return false;
    } else {
        $string = preg_replace($regex, '', $this->email);
    }

    return empty($string) ? true : false;
}


private function validateFields(){
    // Check name
    if(!$this->name)
    {
        $this->response_html .= '<p>Please enter your name</p>';
        $this->response_status = 0;
    }

    // Check email
    if(!$this->email)
    {
        $this->response_html .= '<p>Please enter an e-mail address</p>';
        $this->response_status = 0;
    }

    // Check valid email
    if($this->email && !$this->validateEmail())
    {
        $this->response_html .= '<p>Please enter a valid e-mail address</p>';
        $this->response_status = 0;
    }

    // Check message length
    if(!$this->message || strlen($this->message) < $this->message_min_length)
    {
        $this->response_html .= '<p>Please enter your message. It should have at least '.$this->message_min_length.' characters</p>';
        $this->response_status = 0;
    }
}


private function sendEmail(){
    $mail = mail($this->email_admin, $this->subject, $this->message,
         "From: ".$this->name." <".$this->email.">\r\n"
        ."Reply-To: ".$this->email."\r\n"
    ."X-Mailer: PHP/" . phpversion());

    if($mail)
    {
        $this->response_status = 1;
        $this->response_html = '<p>Thank You!</p>';
    }
}


function sendRequest(){
    $this->validateFields();
    if($this->response_status)
    {
        $this->sendEmail();
    }

    $response = array();
    $response['status'] = $this->response_status;   
    $response['html'] = $this->response_html;

    echo json_encode($response);
}
}


$contact_form = new Contact_Form($_POST, $admin_email, $message_min_length);
$contact_form->sendRequest();

?>

这是网址:http: //jackalopemedia.com/benefits.html

非常感谢这里的任何帮助!谢谢。

4

1 回答 1

1

无需在标签中写入method属性<form>,默认情况下它会将其作为 GET 请求。

你需要做的是:

<form id="contact-form" action="contact.php" method="post">
  <input type="text" class="form-control" placeholder="Your Name" name="name" />
  <input type="text" class="form-control" placeholder="Email" name="email" />
  <input type="text" class="form-control" placeholder="Phone Number" name="phone" />
  <input type="submit" class="btn btn-jackalope btn-centered">Request Quote</input>
</form>

请注意我是如何包含method="post".

检查这是否有效。

更新:

代替:

$response = array();
$response['status'] = $this->response_status;   
$response['html'] = $this->response_html;

echo json_encode($response);

尝试:

$response = array();
$response['status'] = $this->response_status;
$response['html'] = $this->response_html;

if ($response['status'] == '0') { // If error
  echo json_encode($response);
} else {
  echo $response['html'];
}

更新:更改:

$this->name = stripslashes($details['name']);
$this->email = trim($details['email']);
$this->phone = trim($details['phone']);
$this->subject = 'Contact from Your Website'; // Subject 
$this->message = stripslashes($details['message']);

对此:

$this->name = stripslashes($details['name']);
$this->email = trim($details['email']);
$this->phone = trim($details['phone']);
$this->subject = 'Contact from Your Website'; // Subject 
$this->message = $this->name . " " . $this->email . " " . $this->phone;

应该做的伎俩。

于 2013-10-26T01:29:47.883 回答