提交按钮正在下载php而不是运行它

时间:2013-05-06 12:22:46

标签: php html forms contact contact-form

我正在尝试为我的网站制作一个联系表单,但是当我按下提交时,将下载php文件而不是运行。 我正在使用chrome,但不认为这应该重要 我认为有一个语法错误,但我已经搞乱删除,添加和东西,即使没有语法错误,它仍然下载文件,而不是运行它 并且,是的......它是php文件的确切名称(SendEmail.php)

HTML

<form name="contactform" method="post" action="SendEmail.php">
 <div class="ContactHeaders">Name:</div>
 <input type="text" name="Name" class="ContactBoxes"/>
 <div class="ContactHeaders">Email:</div>
 <input type="text" name="Email" class="ContactBoxes"/>
 <div class="ContactHeaders">Message:</div>
   <div style="width:100%">
   <textarea name="Message" maxlength="1000"></textarea>
   </div>
 <div style="width: 100%">
 <input type="submit" class="Submitbtn" value="Submit">
 </div>
</form>

PHP

if(isset($_POST['Email'])) {


    $email_to = "email@domain.com";
    $email_subject = "Website Contact";


    function died($error) {

        echo "We are very sorry, but there were error(s) found with the form you submitted.";
        echo "These errors appear below.<br /><br />";
        echo $error."<br /><br />";
        echo "Please go back and fix these errors.<br /><br />";
        die();
    }

    // validation expected data exists
    if(!isset($_POST['Name']) ||
        !isset($_POST['Email']) ||
        !isset($_POST['Message'])) {
        died('Sorry, but there appears to be a problem with the form you submitted.');       
    }

    $first_name = $_POST['Name']; // required
    $last_name = $_POST['Email']; // required
    $email_from = $_POST['Message']; // required

    $error_message = "";
    $email_exp = '/^[A-Za-z0-9._%-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/';
  if(!preg_match($email_exp,$Email)) {
    $error_message .= 'The Email Address you entered does not appear to be valid.<br />';
  }
    $string_exp = "/^[A-Za-z .'-]+$/";
  if(!preg_match($string_exp,$Name)) {
    $error_message .= 'The First Name you entered does not appear to be valid.<br />';
  }

  if(strlen($Message) < 10) {
    $error_message .= 'The message you entered does not appear to be valid.<br />';
  }
  if(strlen($error_message) > 0) {
    died($error_message);
  }

    function clean_string($string) {
      $bad = array("content-type","bcc:","to:","cc:","href");
      return str_replace($bad,"",$string);
    }


    $Name .= clean_string($Name)."\n";
    $Email .= clean_string($Email)."\n";
    $Message .= clean_string($Message)."\n";


//email headers
$headers = 'From: '.$Email."\r\n".
'Reply-To: '.$Email."\r\n" .
'X-Mailer: PHP/' . phpversion();
@mail($email_to, $email_subject, $Message, $headers);  
?>

Thank you for contacting me. I will be in touch with you very soon.

<?php 
}
?>

我找不到什么错!!!

4 个答案:

答案 0 :(得分:2)

如果正在下载实际的php源代码,您的网络服务器上会出现一些配置问题,但我不会在此处讨论。

我建议您删除邮件命令的@ infront,因为这会消除您可能遇到的错误。

其中一个错误即。考虑到你的代码说:$email_from = $_POST['Message']; // required这个事实,你压抑的事实是你没有$ Message变量。

除此之外:我建议你阅读有关大写/小写字符的命名约定。它使调试代码更容易一些。首先尝试http://framework.zend.com/manual/1.12/en/coding-standard.naming-conventions.html

PS。你实际上有一个$ Message变量,但它是空的。

答案 1 :(得分:1)

我遇到了同样的问题。我在WAMP服务器上尝试这个。当我输入URL localhost/login.html并注册时,它工作正常。当我通过编辑器打开它时出现问题。新网址为localhost:66342/login.html

所以我所要做的就是输入原始网址而不是新网址,然后就可以了。

答案 2 :(得分:0)

您所需要的只是一个Web服务器。
对于使用LAMP服务器的用户,可以将文件移动到var / www / html文件夹。
如果您不想移动文件,只需在文件所在的目录中启动Web服务器。 (假设您的文件名为index.html / index.php。否则,请在以下命令中指定文件名。)

php -S localohost:8080 <filename>

现在访问http://localhost:8080/,您就很好了。

答案 3 :(得分:-1)

如何解决 确保您在 xamps 中的 htdocs 文件夹中工作 在浏览器中输入 localhost/ 文件夹中应该有一个索引页