简单联系表单PHP失败

时间:2015-06-22 12:08:06

标签: php html html5

我是HTML和PHP的新手,我正在尝试构建一个简单的联系表单,以便用户可以在联系页面上向我发送消息,然后将其定向到我的电子邮件。我在这里做错了什么想法:

contact.html:

<section id="secondary">
        <form action="contact.php" method="post" class="contactform">
          Your Name<br>
          <input type="text" maxlength="100" name="cf_name" style="width: 300px" class="contactboxes"><br>
          Your E-mail<br>
          <input type="text" maxlength="100" name="cf_email" style="width: 300px" class="contactboxes"><br>
          The Reason for Contact<br>
          <textarea name="cf_message" maxlength="500" style="width: 300px" class="contactboxes"></textarea><br>
          <input type="submit" value="Send" class="sendclearbutton">
         <input type="reset" value="Clear" class="sendclearbutton">
        </form>
      </section> 

contact.php:

<?php

$field_name = $_POST['cf_name'];
$field_email = $_POST['cf_email'];
$field_message = $_POST['cf_message'];

$mail_to = 'sharan@hotmail.co.uk';
$subject = 'Message from a site visitor '.$field_name;

$body_message = 'From: '.$field_name."\n";
$body_message .= 'E-mail: '.$field_email."\n";
$body_message .= 'Message: '.$field_message;

$headers = 'From: '.$field_email."\r\n";
$headers .= 'Reply-To: '.$field_email."\r\n";

$mail_status = mail($mail_to, $subject, $body_message, $headers);

if ($mail_status) { ?>
    <script language="javascript" type="text/javascript">
        alert('Thank you for the message. We will contact you shortly.');
        window.location = 'contact.html';
    </script>
<?php
}
else { ?>
    <script language="javascript" type="text/javascript">
        alert('Message failed. Please, send an email to sharan@hotmail.co.uk.');
        window.location = 'contact.html';
    </script>
<?php
}
?>

1 个答案:

答案 0 :(得分:0)

对我而言,正如兰斯所说,我认为它不会起作用的唯一原因是你没有安装PHP。下载Apache或任何最适合您计算机的内容或在线使用虚拟主机。不过,请说其他代码是否正常工作。