douju4594 2014-03-31 11:19 采纳率: 100%
浏览 37
已采纳

HTML PHP文件上传错误

I am trying to upload a PDF file, but getting the "Invalid File" error. I have used the code from w3schools, but its not working. Here is the PHP code

    $allowedExts = array("pdf");
    $temp = explode(".", $_FILES["pdfFile"]["name"]);
    $extension = end($temp);
    if ((($_FILES["pdfFile"]["type"] == "application/pdf"))
    && ($_FILES["pdfFile"]["size"] < 1200000)
    && in_array($extension, $allowedExts))
      {
      if ($_FILES["pdfFile"]["error"] > 0)
        {
        echo "Return Code: " . $_FILES["pdfFile"]["error"] . "<br>";
        }
      else
        {
        echo "Upload: " . $_FILES["pdfFile"]["name"] . "<br>";
        echo "Type: " . $_FILES["pdfFile"]["type"] . "<br>";
        echo "Size: " . ($_FILES["pdfFile"]["size"] / 1024) . " kB<br>";
        echo "Temp file: " . $_FILES["pdfFile"]["tmp_name"] . "<br>";

        if (file_exists("../assets/pdf/" . $_FILES["pdfFile"]["name"]))
          {
          echo $_FILES["pdfFile"]["name"] . " already exists. ";
          }
        else
          {
          move_uploaded_file($_FILES["pdfFile"]["tmp_name"],
          "../assets/pdf/" . $_FILES["pdfFile"]["name"]);
          echo "Stored in: " . "../assets/pdf/" . $_FILES["pdfFile"]["name"];
          }
        }
      }
    else
      {
      echo "Invalid file";
      }
  • 写回答

2条回答 默认 最新

  • dongtang1909 2014-03-31 11:23
    关注

    Could you just check (by echo, var_dump or whatever suits you) the content of $_FILES["pdfFile"] ? Are you sure it fits ?

    And you did set the enctype of Your upload form as well ? http://www.w3schools.com/tags/att_form_enctype.asp

    And the form method is equal POST ?

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

报告相同问题?

悬赏问题

  • ¥15 如何在scanpy上做差异基因和通路富集?
  • ¥20 关于#硬件工程#的问题,请各位专家解答!
  • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
  • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
  • ¥30 截图中的mathematics程序转换成matlab
  • ¥15 动力学代码报错,维度不匹配
  • ¥15 Power query添加列问题
  • ¥50 Kubernetes&Fission&Eleasticsearch
  • ¥15 報錯:Person is not mapped,如何解決?
  • ¥15 c++头文件不能识别CDialog