dqalnwuci494308 2018-10-01 22:16
浏览 140
已采纳

当表单具有enctype =“text / plain”时,无法从$ _POST数组中获取字段

I believe that my code is correct, when I remove the isset statement it returns an error as if the fields were not set. I have heard that this may be due to how PHP is configured on the server which may be the case. It seems like the variables aren't being passed from the HTML to the PHP code. If it means anything I have my PHP installed with WebPlatformInstaller and running IIS on windows server 2016

<?php
echo "test";

    if(isset($_POST['email'])) {
        echo "success";
        $email_to = "temp@gmail.com";
        $email_subject = "Your email subject line";

        function died($error) {
            // your error code can go here
            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['email']) ||
            !isset($_POST['message'])) {
            died('You must enter your email and a message');       
        }


        $email_from = $_POST['email']; // required
        $message = $_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_from)) {
        $error_message .= 'The Email Address you entered does not appear to be valid.<br />';
        }

        $string_exp = "/^[A-Za-z .'-]+$/";

        if(strlen($message) < 2) {
        $error_message .= 'The message you entered do not appear to be valid.<br />';
        }

        if(strlen($error_message) > 0) {
        died($error_message);
        }

        $email_message = "Form details below.

";


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

        $email_message .= "Email: ".clean_string($email_from)."
";
        $email_message .= "message: ".clean_string($message)."
";

        // create email headers
        $headers = 'From: '.$email_from."
".
        'Reply-To: '.$email_from."
" .
        'X-Mailer: PHP/' . phpversion();
        @mail($email_to, $email_subject, $email_message, $headers);  
        ?>

        <!-- include your own success html here -->

        echo "Thank you for reaching out! I'll be in touch.";

        <?php

        }
        ?>`

HTML

<form action="contact.php" method="post" enctype="text/plain">
      <input type="email" placeholder="Email" name='email' required>
      <input class="btn" type='submit' tabindex="1" value='Send'>
      <textarea type='text' name='message' required></textarea>
    </form>
  • 写回答

2条回答 默认 最新

  • duanbi1888 2018-10-01 22:44
    关注

    Read this: Bug #33741 $_POST superglobal not populated which is about Your issue.

    and answer there:

    Valid values for enctype in tag are:

    application/x-www-form-urlencoded

    multipart/form-data


    Check these screenshots with code samples to see results:

    text/plain

    text/plain

    application/x-www-form-urlencoded

    urlencoded



    EXTRA: php://input stream

    php://input stream



    as request body it does not change anything but @ symbol (that's why it's urlencoded)

    request edit

    RESULT: It's not a bug of PHP, it's common feature for all PHP versions to accept supported enctypes, it just does not populate $_POST array from php://input when it "see" different content-type. But if You insist You can read it from php://input stream.

    link to manual

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 如何构建全国统一的物流管理平台?
  • ¥100 ijkplayer使用AndroidStudio/CMake编译,如何支持 rtsp 直播流?
  • ¥20 和学习数据的传参方式,选择正确的传参方式有关
  • ¥15 这是网络安全里面的poem code
  • ¥15 用js遍历数据并对非空元素添加css样式
  • ¥15 使用autodl云训练,希望有直接运行的代码(关键词-数据集)
  • ¥50 python写segy数据出错
  • ¥20 关于线性结构的问题:希望能从头到尾完整地帮我改一下,困扰我很久了
  • ¥30 3D多模态医疗数据集-视觉问答
  • ¥20 设计一个二极管稳压值检测电路