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.

Possible Duplicate:
multi image upload wrong quantity on file-upload

Hey so I have a php script that uploads one file to the server, how can I change the code to allow for multiple files to be uploaded at the same time. before people start linking to other questions, I know how to search stackoverflow and google, however the answers I have found by searching I cannot figure out how to apply to my code. my code follows:

<?php
session_start();
$allowedExts = array("jpg", "jpeg", "gif", "png");
$extension = end(explode(".", $_FILES["file"]["name"]));

if ((($_FILES["file"]["type"] == "image/gif")
|| ($_FILES["file"]["type"] == "image/jpeg")
|| ($_FILES["file"]["type"] == "image/png")
|| ($_FILES["file"]["type"] == "image/pjpeg"))
&& ($_FILES["file"]["size"] < 20000)
&& in_array($extension, $allowedExts))
  {
  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"]["tmp_name"] . "<br />";

if (file_exists($_SESSION['user']."/" . $_FILES["file"]["name"]))
  {
  echo $_FILES["file"]["name"] . " already exists. ";
  }
else
  {
  move_uploaded_file($_FILES["file"]["tmp_name"][$i],
  $_SESSION['user']."/" . $_FILES["file"]["name"]);
  echo "Stored in: " . $_SESSION['user']."/" . $_FILES["file"]["name"];

  }
}



else
  {
  echo "Invalid file";
  }

?> 
share|improve this question

marked as duplicate by Baba, DCoder, David Stratton, vstm, Yan Oct 7 '12 at 19:12

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

2 Answers

up vote 1 down vote accepted

This is an advanced file uploading system I wrote it some years ago:

HTML:

<form action="upload.php" method="post" enctype="multipart/form-data" >
    <input type="file" name="myfile[]" /><br>
    <input type="file" name="myfile[]" /><br>
    <input type="file" name="myfile[]" /><br>
    <!-- MORE AND MORE -->
    <input type="submit" name="submit" value="Upload" />
</form>

PHP:

<?php // upload.php
// Set timezone for probable usage.
date_default_timezone_set('Asia/Tehran');

// Assign valid types
$valid_mime = array(
    'image/jpeg',
    'image/pjpeg',
    'image/jpeg',            
    'image/png',
    'image/gif'
);

function upload($files, $dir, $size_limit=1024, $prevent_duplicate=false){
    global $valid_mime;

    // $files must be given.
    if(!isset($files)) return false;

    // Look for $valid_mime array.
    isset($valid_mime) and is_array($valid_mime) or die('Error in data resources, valid_mime array not found.');

    // Make directory if not exists. set permission to 0777.
    is_dir($dir) and chmod($dir, 0777) or mkdir($dir, 0777, true);

    $count = 1;
    foreach($files as $file){
        $file['error'] === UPLOAD_ERR_OK or die('Error in uploading file(s).');

        // Check uploaded-file type.
        in_array($file['type'], $valid_mime) or die();

        // Set size_limit in KB.
        $file['size'] > $size_limit*1024 and die('The uploaded file exceeds the maximum file size.');

        // Prevent duplicate filenames.
        $prefix = ($prevent_duplicate == true) ? time().'_' : '';
        $suffix = ($prevent_duplicate == true) ? '_'.$count++ : '';

        $file_extension = strrchr($file['name'], '.');
        $filename = basename($file['name'], $file_extension);

        $file_path = "{$dir}/{$prefix}{$filename}{$suffix}{$file_extension}";

        // Move uploaded-file from php temp folder to desire one.
        move_uploaded_file($file["tmp_name"], $file_path);

        // Make an array of filepaths
        $output[] = $file_path;
    }

    // Change permission of folder according to security issues.
    chmod($dir, 0755);

    return $output; 
}
/////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////  Controller Section  ////////////////////////////////

// Assign tmp_arr from $_FILES['myfile'] and do die if there is any problem.
$tmp_arr = (isset($_POST['submit']) and isset($_FILES['myfile'])) ? $_FILES['myfile'] : die('Error in posting data.');

// Create an array with desired structure.
for($i=0; $i<count($tmp_arr['name']); $i++){
    $files[] = array(
        'name'      =>  $tmp_arr['name'][$i],
        'type'      =>  $tmp_arr['type'][$i],
        'tmp_name'  =>  $tmp_arr['tmp_name'][$i],
        'error'     =>  $tmp_arr['error'][$i],
        'size'      =>  $tmp_arr['size'][$i],
    );
}

// size_limit in KB
$path_arr = upload($files, './public', 1024, true);

// SEE WHAT HAPPENS ;)
echo '<pre>';
var_export($path_arr);
?>
share|improve this answer
That looks awesome but why do you put multiple myfile[] in the form submit? What if i fid not know how many i need – user1661396 Oct 7 '12 at 15:39
1  
No problem, don't worry about knowing how many inputs exist. you can insert just one input for upload file or a bunch of inputs!. in upload.php file, there's a for loop to create an array with desired structure, which will be passed in upload() function – Hashem Qolami Oct 7 '12 at 16:01
awesome, thanks a lot – user1661396 Oct 7 '12 at 17:12

use something like this

<input type="file" name="uploadfile[]" multiple="multiple"/>

your php code should be like this

<?php

foreach ($_FILES['uploadfile']['name'] as $filename) 
            {
                $temp=$target;
                $tmp=$_FILES['file']['tmp_name'][$count];
                $count=$count + 1;
                $temp=$temp.basename($filename);
                move_uploaded_file($tmp,$temp);//add more security as required
                $temp='';
                $tmp='';
            }

?>
share|improve this answer
I did that but how does my php code need to change to support that – user1661396 Oct 7 '12 at 15:12
@user1661396 see the edited answer. – StaticVariable Oct 7 '12 at 15:16

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