Hi all, and thank you in advance for your time!
When running this code’s upload form, uploaded a “Resume.txt.” file, the code always jumps to printing “Invalid file” It does not do so if i remove all of the file type restrictions. I don’t know what I am doing wrong, since it allows “text/plain” files.
When the restrictions are not even there though the output is :
Upload:
Type:
Size: 0 Kb
Temp file:
already exists.
But there is no file in the uploads folder already existing. I am quite confused.
I know this code isnt secure or anything, that will be explored after I figure this out, it’s killin’ me! Any explanations for these would be most appreciated! Thank you.
[code]if ((($_FILES[“file”][“type”] == “image/gif”)
|| ($_FILES[“file”][“type”] == “image/jpeg”)
|| ($_FILES[“file”][“type”] == “image/pjpeg”)
|| ($_FILES[“file”][“type”] == “text/plain”))
&& ($_FILES[“file”][“size”] < 20000))
{
if ($_FILES[“file”][“error”] > 0) {
echo "Return Code: " . $_FILES[“file”][“error”] . “
”;
}
else {
echo "Upload: " . $_FILES[“file”][“name”] . “
”;
echo "Type: " . $_FILES[“file”][“type”] . “
”;
echo “Size: " . ($_FILES[“file”][“size”] / 1024) . " Kb
”;
echo "Temp file: " . $_FILES[“file”][“tmp_name”] . “
”;
if (file_exists("upload/" . $_FILES["file"]["name"])) {
echo $_FILES["file"]["name"] . " already exists. ";
} else {
if (move_uploaded_file($_FILES["file"]["tmp_name"], "upload/" . $_FILES["file"]["name"])) {
echo "The file " . basename($_FILES['file']['name']) . " has been uploaded";
} else {
echo "There was an error uploading the file, please try again!";
}
echo "Stored in: " . "upload/" . $_FILES["file"]["name"];
}
}
} else {
echo “Invalid file”;
}[/code]