Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Yes, I know that there are hundreds of questions similar, but I didn't find a working answer... The problem is: I want upload multiple files... The correct way should be this:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>
</head>

<body>
<form enctype="multipart/form-data" method="post" action="?u=1">
 <input  type="file" name="myFile[]" />
 <input  type="file" name="myFile[]" />
 <input  type="file" name="myFile[]" />
<input type="submit" value="Upload!" name="submit"/>
</form>
<?
if ($_GET['u']){
foreach ($_FILES["myFile"]["error"] as $key => $error) {
 if ($error == UPLOAD_ERR_OK) {
   $tmp_name = $_FILES["myFile"]["tmp_name"][$key];
   $name = $_FILES["myFile"]["name"][$key];
   // here we move it to a directory called data
   // you can move it wherever you want
   move_uploaded_file($tmp_name, "/data/$name");
 } else {
   // an error occurred, handle it here
 }
}
}

if (!$_FILES){
    echo 'WTF?? No files sent?? There\'s a problem! Let\' hope that stack overflow will solve it!';
}
?>

</body>
</html>

The output is:

Notice: Undefined index: myFile in C:\xampp\htdocs\php\prova.php on line 18

Warning: Invalid argument supplied for foreach() in C:\xampp\htdocs\php\prova.php on line 18

No files sent?? There's a problem! How can I access files uploaded from an array input tag?

share|improve this question
Does the echo statement fire at the bottom? – MrCode Jun 11 '12 at 11:03
Running this locally on my mac with MAMP works fine, file is uploaded with no hitch. Could be your setup rather than the code – Luke Jun 11 '12 at 11:03
It works fine? I'm the only one who it doens't work? The echo statement print the sentence, but someone modiefied my question! – user1448411 Jun 11 '12 at 12:55

2 Answers

Try this.

  foreach ($_FILES['file']['name'] as $filename)
  {
      $temp=$target;
      $tmp=$_FILES['file']['tmp_name'][$count];
      $count=$count + 1;
      $temp=$temp.basename($filename);
      move_uploaded_file($tmp,$temp)
      $temp='';
      $tmp='';
  }
share|improve this answer
Same output, doesn't work! – user1448411 Jun 11 '12 at 11:03
This will produce undefined variable $target and undefined variable $count, and OP's input name is myFile not file. – MrCode Jun 11 '12 at 11:04
No, it doesn't! I don't know why, but the variable $_FILES is undefined, so the loop doesn't start... In fact, if I put: if (!$_FILES) it returns true! – user1448411 Jun 11 '12 at 11:11
are u sure that the file size constraints are right in your php config? – rjv Jun 11 '12 at 11:27
the limit is 128m... I also tried 1000m, but same problem! – user1448411 Jun 11 '12 at 15:01

I checked your code, and found that changing the line:
move_uploaded_file($tmp_name, "/data/$name"); to
move_uploaded_file($tmp_name, "data/$name");
[Changing absolute path to relative path] does the trick. Now it works fine, in my local server. That should solve it for you.

Courtesy:http://forums.whirlpool.net.au/archive/788971

share|improve this answer
Not work for me... Same error! – user1448411 Jun 11 '12 at 12:01
Do you have a folder named data within the folder that contains the php file. Also data should have write permissions. Please ensure that as well. – saji89 Jun 11 '12 at 12:15
To ensure that the problem is not with the destination directory, try replacing the relevant line with move_uploaded_file($tmp_name, $name); and see if it works. If it works the uploaded file should be found within your C:\xampp\htdocs\php folder. In Windows the directory seperator is `\` and in Linux it is '/' that might be causing the problem. But this check can help you make sure that this is not the problem in your case. – saji89 Jun 11 '12 at 12:19
I tried but it did't work! I have windows... The problem is that the variable $_FILES is undefined... I'd like to see this: if ($_FILES) echo 'It works!'; working – user1448411 Jun 11 '12 at 12:28
Could you post your php.ini file somewhere and share us the link. I would like to check the file upload related configurations. – saji89 Jun 12 '12 at 4:17
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.