<form enctype="multipart/form-data" action="upload_file.php" method="POST">
<input type="hidden" name="MAX_FILE_SIZE" value="100000" />
Choose a file to upload: <input name="uploadedfile" type="file" /><br />
<input type="submit" name="submit" value="Upload File" />
</form>
<?php
// Where the file is going to be placed
$target_path = "uploads/";
/* Add the original filename to our target path.
Result is "uploads/filename.extension" */
$target_path = $target_path . basename( $_FILES['uploadedfile']['name']);
$target_path = "uploads/";
$target_path = $target_path . basename( $_FILES['uploadedfile']['name']);
if ($_REQUEST["submit"] == "Upload File")
{
if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path))
{
echo "The file ". basename( $_FILES['uploadedfile']['name']). " has been uploaded";
}
else
{
echo "There was an error uploading the file, please try again!";
}
}
?>
Notice: Undefined index: uploadedfile in C:\wamp\www\E_Systems\upload_file.php on line 13
Notice: Undefined index: uploadedfile in C:\wamp\www\E_Systems\upload_file.php on line 18
Notice: Undefined index: submit in C:\wamp\www\E_Systems\upload_file.php on line 20
Can successful upload the image into "uploads" folder, but still showing error.
Please help me..