I have done a code in which on submit button click, I get a value from Image selected from , but when I try to get the value from $_POST it is giving me error like : Undefined index: ....(Though I have selected an image using file input)
Here is the code of HTML Tag I have Placed:
<input type="file" name="imgFile" accept="image/*" id="imgFile" />
And here is the code from which I m trying to get value on submit button:
$img = $_POST['imgFile'];

print_r($_FILES)to see what's there. Also, make sure you are using<form method='post' enctype='multipart/form-data'>See php.net/manual/en/reserved.variables.files.php – Michael Berkowski Dec 29 '12 at 19:23