weixin_33736649 2017-01-07 23:03 采纳率: 0%
浏览 18

无法读取PHP中的POST值[重复]

This question already has answers here:
                </div>
            </div>
                    <div class="grid--cell mb0 mt4">
                        <a href="/questions/12769982/reference-what-does-this-error-mean-in-php" dir="ltr">Reference - What does this error mean in PHP?</a>
                            <span class="question-originals-answer-count">
                                (36 answers)
                            </span>
                    </div>
            <div class="grid--cell mb0 mt8">Closed <span title="2017-01-07 23:07:43Z" class="relativetime">3 years ago</span>.</div>
        </div>
    </aside>

I have a problem and just can't figure out what's the issue: In my php code I can't read any of the values included in the post request.

Even if I reduce the PHP-code to just reading the value, there comes a 500 error as response.

I inspected the POST-header: all the data is sent, so you should have access in php.

Here's the code:

$('#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: 

";
if(isset($_POST["name1"]))
{
  $text .= "Name: ".&_POST["name1"];
}
if(isset($_POST["email1"]))
{
  $text .= "

Email: ".&_POST["email1"];
}
if(isset($_POST["message1"]))
{
  $text .= "

Nachricht: ".&_POST["message1"];
}

//$text = wordwrap($text, 70); 
mail($empfaenger, $betreff, $text);
?>

Thanks for your help! :)

</div>
  • 写回答

1条回答 默认 最新

  • 10.24 2017-01-07 23:06
    关注

    Replace &_POST -> $_POST.

    评论

报告相同问题?

悬赏问题

  • ¥15 乘性高斯噪声在深度学习网络中的应用
  • ¥15 运筹学排序问题中的在线排序
  • ¥15 关于docker部署flink集成hadoop的yarn,请教个问题 flink启动yarn-session.sh连不上hadoop,这个整了好几天一直不行,求帮忙看一下怎么解决
  • ¥30 求一段fortran代码用IVF编译运行的结果
  • ¥15 深度学习根据CNN网络模型,搭建BP模型并训练MNIST数据集
  • ¥15 C++ 头文件/宏冲突问题解决
  • ¥15 用comsol模拟大气湍流通过底部加热(温度不同)的腔体
  • ¥50 安卓adb backup备份子用户应用数据失败
  • ¥20 有人能用聚类分析帮我分析一下文本内容嘛
  • ¥30 python代码,帮调试,帮帮忙吧