Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to upload an image and I got the following errors :

Notice: Undefined index: file in C:\xampp\htdocs\dentalcrm.com\controllers\user_add_ctr.php on line 11

Notice: Undefined index: file in C:\xampp\htdocs\dentalcrm.com\controllers\user_add_ctr.php on line 12

Notice: Undefined index: file in C:\xampp\htdocs\dentalcrm.com\controllers\user_add_ctr.php on line 13

Notice: Undefined index: file in C:\xampp\htdocs\dentalcrm.com\controllers\user_add_ctr.php on line 14

Notice: Undefined index: file in C:\xampp\htdocs\dentalcrm.com\controllers\user_add_ctr.php on line 15 Invalid file

The Location of folder where i save the picture is : dentalcrm.com\views\files\user_photos\

Here's my code. please tell my why I received those errors.

    if(isset($_POST["submit"])){

$allowedExts = array("jpg", "jpeg", "gif", "png");
$extension = end(explode(".", $_FILES["file"]["name"]));
if ((($_FILES["file"]["type"] == "image/gif")
|| ($_FILES["file"]["type"] == "image/jpeg") //line 11
|| ($_FILES["file"]["type"] == "image/png") //line 12
|| ($_FILES["file"]["type"] == "image/pjpeg")) //line 13
&& ($_FILES["file"]["size"] < 20000) //line 14
&& in_array($extension, $allowedExts)) //line 15
  {
  if ($_FILES["file"]["error"] > 0)
    {
    echo "Return Code: " . $_FILES["file"]["error"] . "<br>";
    }
  else
    {
      $_FILES["file"]["name"]; //upload
      $_FILES["file"]["type"]; //type
      $_FILES["file"]["size"] / 1024; //size
      $_FILES["file"]["tmp_name"]; //temp file

    if (file_exists("../views/files/user_photos/" . $_FILES["file"]["name"]))
      {
      echo $_FILES["file"]["name"] . " already exists. ";
      }
    else
      {
      move_uploaded_file($_FILES["file"]["tmp_name"],
      "upload/" . $_FILES["file"]["name"]);
      echo "Stored in: " . "../views/files/user_photos/" . $_FILES["file"]["name"];
      }
    }
  }
else
  {
  echo "Invalid file";
  }

}
share|improve this question
Is $extension = end(explode(".", $_FILES["file"]["name"])); the 11 line? – Lobo Feb 18 at 17:17
You're receiving those warnings because there's an undefined index. (i.e.: An element of an array you're attempting to access doesn't exist.) Try doing a var_dump or print_r on the $_FILES superglobal. – middaparka Feb 18 at 17:18
possible duplicate of Reference - What does this error mean in PHP? – hakre Feb 18 at 17:22
In order for $_FILES["file"] to be present, you must have your input declared like <input type="file" name="file" />. – MrCode Feb 18 at 17:23
@lobo, yes, that's line 11. – rbel Feb 18 at 17:27
show 9 more comments

closed as too localized by middaparka, cryptic ツ, rdlowrey, NullPoiиteя, hakre Feb 18 at 17:22

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

if(isset($_POST["submit"])){

change to:

if(isset($_POST["submit"]) && !empty($_FILES['file'])){
share|improve this answer
I changed the code, the errors are gone, so the file is empty. What should I do to get the value of file? – rbel Feb 18 at 17:26
Of course there must be <input type="file" name="file" /> inside your form. – Jari Feb 18 at 17:28
I already have that code, but still the same problem. – rbel Feb 18 at 17:33
Post the whole your form here, ill see. – Jari Feb 18 at 17:34
<form action="../../controllers/user_add_ctr.php" method="post" enctype="multipart/form-data"> <label for="file">Filename:</label> <input type="file" name="file" ><br> <input type="submit" name="submit" value="Submit"> </form> – rbel Feb 18 at 17:39
show 4 more comments

Not the answer you're looking for? Browse other questions tagged or ask your own question.