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.

    评论

报告相同问题?

悬赏问题

  • ¥30 Matlab打开默认名称带有/的光谱数据
  • ¥50 easyExcel模板 动态单元格合并列
  • ¥15 res.rows如何取值使用
  • ¥15 在odoo17开发环境中,怎么实现库存管理系统,或独立模块设计与AGV小车对接?开发方面应如何设计和开发?请详细解释MES或WMS在与AGV小车对接时需完成的设计和开发
  • ¥15 CSP算法实现EEG特征提取,哪一步错了?
  • ¥15 游戏盾如何溯源服务器真实ip?需要30个字。后面的字是凑数的
  • ¥15 vue3前端取消收藏的不会引用collectId
  • ¥15 delphi7 HMAC_SHA256方式加密
  • ¥15 关于#qt#的问题:我想实现qcustomplot完成坐标轴
  • ¥15 下列c语言代码为何输出了多余的空格