Jump to content

Upload script...


forumnz

Recommended Posts

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]<?php
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))
  {
  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!

Link to comment
https://forums.phpfreaks.com/topic/35905-upload-script/
Share on other sites

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.
Link to comment
https://forums.phpfreaks.com/topic/35905-upload-script/#findComment-170263
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.