我遇到了问题而无法弄清问题是什么: 在我的PHP代码中,我无法读取post请求中包含的任何值。
即使我将PHP代码减少到只读取值,也会出现500错误作为响应。
我检查了POST标题:所有数据都已发送,因此您应该可以访问php。
以下是代码:
$('#contactForm').submit(function (e) {
e.preventDefault();
var $form = $(this);
// check if the input is valid
if (!$form.valid()) return false;
$.ajax({
type: 'POST',
url: 'contact.php',
data: $('#contactForm').serialize(),
success: function (response) {
$(".formSuccess").show();
$(".formError").hide();
},
error: function (response) {
$(".formSuccess").hide();
$(".formError").show();
}
});
});
contact.php
<?php
$empfaenger = "info@heitech.co.at";
$betreff = "Formularnachricht";
$text = "Formularnachricht: \n\n";
if(isset($_POST["name1"]))
{
$text .= "Name: ".&_POST["name1"];
}
if(isset($_POST["email1"]))
{
$text .= "\n\nEmail: ".&_POST["email1"];
}
if(isset($_POST["message1"]))
{
$text .= "\n\nNachricht: ".&_POST["message1"];
}
//$text = wordwrap($text, 70);
mail($empfaenger, $betreff, $text);
?>
感谢您的帮助! :)
答案 0 :(得分:0)
替换&_POST
- &gt; $_POST
。