$ _FILES表单提交[复制]后空($_FILES empty after form submis

2019-07-20 17:07发布

这个问题已经在这里有一个答案:

  • 为什么$文件上传到PHP的时候_FILES是空的? 20个回答

我使用的是标准的PHP函数上传用作与PHPMailer的附件文件。

<form name="upload" method="post" action="send_form_email3.php">
    <div width="100%" class="con3">
        <div class="lable">
            <label for="first_name">First Name *</label>
        </div>
        <input  type="text" name="first_name" id="first_name" class="span4">

        <div class="lable">
            <label for="email">Email Address *</label>
        </div>
        <input  type="text" name="email" id="email" class="span4">

        <div class="lable">
            <label for="telephone">Contact Number *</label>
        </div>
        <input  type="text" name="telephone" id="telephone" class="span4">

        <div class="lable">
            <label for="comments">Message *</label>
        </div>
        <textarea  name="comments" rows="8" id="comments" class="span4"></textarea>

        <div class="lable">
            <label for="upload">Send Us Your CV *</label>
        </div>
        <input type="file" name="upload" id="upload" />

        <input type="submit" value="Submit" class="btn btn-success">
    </div>
</form>

这种形式被提交到下面的PHP处理程序在此邮件是建立和发送:

<?php

    require_once("class.phpmailer.php");

    $first_name = $_POST['first_name']; // required
    $email_from = $_POST['email']; // required
    $telephone = $_POST['telephone']; // required
    $comments = $_POST['comments']; // required

    echo "just got form values<br />";
    echo $_FILES['upload']['name'].'<br />';

    $email_message = "Form details below.<br />";

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

    $email_message .= "Name: ".clean_string($first_name)."\n";
    $email_message .= "Email: ".clean_string($email_from)."\n";
    $email_message .= "Contact: ".clean_string($telephone)."\n";
    $email_message .= "Message:\n".clean_string($comments)."\n";

    echo "added text to email<br />";

    $target_path = "uploads/";

    $target_path = $target_path . basename( $_FILES['upload']['name']); 

    // upload the file
    echo "target = ".$target_path."<br />";

    if (isset($_FILES['upload']['size']))
    {
        if ($_FILES['upload']['size'] > 0)
        {
        echo 'file size: '.basename($_FILES['upload']['size']).'<br />';
            if (move_uploaded_file($_FILES['upload']['name'], $target_path))
            {
                echo "The file ".  basename( $_FILES['upload']['name'])." has been uploaded<br />";
                                    // adding an already existing file as an attachment to the email for debugging purposes.
                $email->AddAttachment('uploads/CreditReportViewer.pdf');
            }
            else
            {
                echo "There was an error uploading the file, please try again!<br />&nbsp;".basename($_FILES['upload']['error']);
            }
        }
        else
        {
            echo "There was an error uploading the file, please try again!<br />";
        }
    }
    else
    {
        echo "No file was found for the upload.<br />";
    }


    $email = new PHPMailer();

    $email->To = "me@this.com";
    $email->From = $email_from;
    $email->FromName = $first_name;
    $email->Subject = "New Message from Website";
    $email->Body = $email_message;

    echo "\n mail built...<br />";

    $email->Send();

    echo "mail sent!";
?>

问题是, $_FILES['upload']['name']没有设置。 这里是正在写入到浏览器的回声:

刚表单值

添加文本电子邮件
目标=上传/
没有找到文件上传。
内置的邮件...
邮寄!

这让我觉得,我引用文件上传字段或上传本身不正确。

任何人都可以在这里看到的任何问题或提供一些指导,如果这不是要做到这一点,最好的方法是什么?

Answer 1:

你必须添加,

enctype= "multipart/form-data"

改变你的形式,

<form name="upload" method="post" action="send_form_email3.php" enctype= "multipart/form-data">


Answer 2:

enctype到您的形式变化:

<form name="upload" method="post" action="send_form_email3.php">

<form name="upload" method="post" action="send_form_email3.php" enctype="multipart/form-data">


Answer 3:

另一个提示:如果的upload_max_filesize(php.ini中)小于由用户选择的文件,$ _FILES将是空的。



Answer 4:

你忘了设置多形式的声明。

添加enctype="multipart/form-data"形式。



Answer 5:

您应该添加enctype=multipart/form-data到表单中。

<form name="upload" method="post" action="send_form_email3.php" enctype="multipart/form-data">

因为它是作为一个MIME流,一个非常不同的格式比正常POST发送

什么是ENCTYPE = '的multipart / form-data的'是什么意思?



Answer 6:

如果添加了加密类型,仍然不能正常工作 - 检查PHP文件的权限。 在ooowebhost你可以输入chmod找到它。 更改为“777”。 否则,该文件没有权限来执行/写



文章来源: $_FILES empty after form submission [duplicate]