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";
}
}


$_FILES["file"]to be present, you must have your input declared like<input type="file" name="file" />. – MrCode Feb 18 at 17:23