未定义索引:第12,15,16,17,18,19,20行中的文件

时间:2015-01-13 19:07:33

标签: php file-upload

我在这部分中收到错误,将文件图像上传到文件夹后保存在数据库中,请帮帮我

  11   $allowedExts = array("gif", "jpeg", "jpg", "png");
  12   $temp = explode(".", $_FILES["file"]["name"]);
  13   $extension = end($temp);
  14
  15   if ((($_FILES["file"]["type"] == "image/gif")
  16   || ($_FILES["file"]["type"] == "image/jpeg")
  17   || ($_FILES["file"]["type"] == "image/jpg")
  18   || ($_FILES["file"]["type"] == "image/pjpeg")
  19   || ($_FILES["file"]["type"] == "image/x-png")
  20   || ($_FILES["file"]["type"] == "image/png"))
       && ($_FILES["file"]["size"] < 100000)
       && in_array($extension, $allowedExts)) {
       if ($_FILES["file"]["error"] > 0) {
       echo "Return Code: " . $_FILES["file"]["error"] . "<br>";
      } else {
      if (file_exists("../img/propieties/" . $_FILES["file"]["name"])) {
        echo $_FILES["file"]["name"] . " already exists. ";
      } else {
        move_uploaded_file($_FILES["file"]["tmp_name"],
        "../img/propieties/" . $_FILES["file"]["name"]);
      }
      }
      } else {
       echo "Invalid file";
      }

我使用方法POST

将元素输入法线输入到表单中
<input type="file" name="file" id="file">

1 个答案:

答案 0 :(得分:1)

您可能错过了enctype="multipart/form-data"代码中的<form>属性。没有它,文件将无法上传。

<form enctype="multipart/form-data" action="" method="post">