forumnz Posted January 27, 2007 Share Posted January 27, 2007 It keeps saying invalid file...Heres the form snippet...[code]<form action="check.php" method="post"enctype="multipart/form-data"><label for="file">Filename:</label><input type="file" name="file" id="file" /><br /><br /><input type="submit" name="submit" value="Submit" /></form>[/code]and heres the upload script...[code]<?phpif (($_FILES["file"]["type"] == "image/gif")|| ($_FILES["file"]["type"] == "image/jpeg")|| ($_FILES["file"]["type"] == "text/css")|| ($_FILES["file"]["type"] == "text/html")|| ($_FILES["file"]["type"] == "text/php")&& ($_FILES["file"]["size"] < 250000)) { if ($_FILES["file"]["error"] > 0) { echo "Return Code: " . $_FILES["file"]["error"] . "<br />"; } else { echo "Upload: " . $_FILES["file"]["name"] . "<br />"; echo "Type: " . $_FILES["file"]["type"] . "<br />"; echo "Size: " . ($_FILES["file"]["size"] / 1024) . " Kb<br />"; echo "Temp file: " . $_FILES["file"]["_files/"] . "<br />"; if (file_exists("_files/" . $_FILES["file"]["name"])) { echo $_FILES["file"]["name"] . " already exists. "; } else { move_uploaded_file($_FILES["file"]["_files/"], "_files/" . $_FILES["file"]["name"]); echo "Stored in: " . "_files/" . $_FILES["file"]["name"]; } } }else { echo "Invalid file"; }?>[/code]TIA! Quote Link to comment Share on other sites More sharing options...
Jessica Posted January 27, 2007 Share Posted January 27, 2007 Try reformatting your if to this:[code]if ((($_FILES["file"]["type"] == "image/gif")|| ($_FILES["file"]["type"] == "image/jpeg")|| ($_FILES["file"]["type"] == "text/css")|| ($_FILES["file"]["type"] == "text/html")|| ($_FILES["file"]["type"] == "text/php"))&& ($_FILES["file"]["size"] < 250000))[/code]This will check if any of the file types, AND the size. Yours was a little confusing. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.