Tycoon Talk
Become a Big fish!
The number 1 forum for online business!
Post topics, ask questions, share your knowledge.
Tycoon Talk is part of Freelancer.com - find skilled workers online at a fraction of the cost.

PHP Forum


You are currently viewing our PHP Forum as a guest. Please register to participate.
Login



Freelance Jobs

Reply
Old 09-02-2010, 01:50 AM Multiple file upload
Junior Talker

Posts: 2
Trades: 0
I found and configured a script to allow me to upload a single file. Now I want it to be able to upload 5 files at a time. How can I convert this code to allow for that?

PHP Code:
<form method="post" action="upload.php" enctype="multipart/form-data" />
<input type="hidden" name="client_matter" value="<?php print date("Y-m-j-H-i");?>"/>
        <input class="input-file" size="56" name="file[]" type="file">
        <input class="input-file" size="56"  name="file[]" type="file">
        <input class="input-file" size="56"  name="file[]" type="file">
        <input class="input-file" size="56"  name="file[]" type="file">
        <input class="input-file" size="56"  name="file[]" type="file"><br />
        <input type="submit" value="Upload Files" />
</form>
PHP Code:
<?php
    
// Check post_max_size (http://us3.php.net/manual/en/features.file-upload.php#73762)
    
$POST_MAX_SIZE ini_get('post_max_size');
    
$unit strtoupper(substr($POST_MAX_SIZE, -1));
    
$multiplier = ($unit == 'M' 1048576 : ($unit == 'K' 1024 : ($unit == 'G' 1073741824 1)));

    if ((int)
$_SERVER['CONTENT_LENGTH'] > $multiplier*(int)$POST_MAX_SIZE && $POST_MAX_SIZE)
        
HandleError('POST exceeded maximum allowed size.');
//Create Directory
$thisdir getcwd() . '/uploads/';
$client_matter $_SESSION[client_matter];
$dirname $thisdir "/$client_matter/";    

if (
file_exists($dirname)) {
 echo 
"";
} else {
mkdir($thisdir "/$client_matter0777true);
chmod($thisdir "/$client_matter0777);
}



// Settings
    
    
$save_path $thisdir "/$client_matter/";                // The path were we will save the file (getcwd() may not be reliable and should be tested in your environment)
    
$upload_name 'file1';                            // change this accordingly
    
$max_file_size_in_bytes 5242880;                // 5mb in bytes
    
$extension_whitelist = array("jpg""gif""png""jpeg"); // Allowed file extensions
    
$backlist = array('php''php3''php4''phtml','exe'); // Restrict file extensions

    
$valid_chars_regex '.A-Za-z0-9_-\s ';// Characters allowed in the file name (in a Regular Expression format)

// Other variables
    
$MAX_FILENAME_LENGTH 260;
    
$file_name '';
    
$file_extension '';
    
$uploadErrors = array(
        
0=>'There is no error, the file uploaded with success',
        
1=>'The uploaded file exceeds the upload_max_filesize directive in php.ini',
        
2=>'The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in the HTML form',
        
3=>'The uploaded file was only partially uploaded',
        
4=>'No file was uploaded',
        
6=>'Missing a temporary folder'
    
);

// Validate the upload
    
if (!isset($_FILES[$upload_name]))
        
HandleError('No upload found in \$_FILES for ' $upload_name);
    else if (isset(
$_FILES[$upload_name]['error']) && $_FILES[$upload_name]['error'] != 0)
        
HandleError($uploadErrors[$_FILES[$upload_name]['error']]);
    else if (!isset(
$_FILES[$upload_name]['tmp_name']) || !@is_uploaded_file($_FILES[$upload_name]['tmp_name']))
        
HandleError('Upload failed is_uploaded_file test.');
    else if (!isset(
$_FILES[$upload_name]['name']))
        
HandleError('File has no name.');

// Validate the file size (Warning: the largest files supported by this code is 2GB)
    
$file_size = @filesize($_FILES[$upload_name]['tmp_name']);
    if (!
$file_size || $file_size $max_file_size_in_bytes)
        
HandleError('File exceeds the maximum allowed size');

    if (
$file_size <= 0)
        
HandleError('File size outside allowed lower bound');
/*/ Validate its a MIME Images (Take note that not all MIME is the same across different browser, especially when its zip file)
    if(!eregi('image/', $_FILES[$upload_name]['type']))
        HandleError('Please upload a valid file!');

// Validate that it is an image
    $imageinfo = getimagesize($_FILES[$upload_name]['tmp_name']);
    if($imageinfo['mime'] != 'image/gif' && $imageinfo['mime'] != 'image/jpeg' && $imageinfo['mime'] != 'image/jpg' && $imageinfo['mime'] != 'image/png' && isset($imageinfo))
        HandleError('Sorry, we only accept GIF and JPEG images');*/

// Validate file name (for our purposes we'll just remove invalid characters)
    
$file_name preg_replace('/[^'.$valid_chars_regex.']|\.+$/i'''strtolower(basename($_FILES[$upload_name]['name'])));
    if (
strlen($file_name) == || strlen($file_name) > $MAX_FILENAME_LENGTH)
        
HandleError('Invalid file name');

// Validate that we won't over-write an existing file
    
if (file_exists($save_path $file_name))
        
HandleError('File with this name already exists');

/*// Validate file extension
$path_info = pathinfo($_FILES[$upload_name]['name']);
$file_extension = $path_info["extension"];
$is_valid_extension = false;
foreach ($extension_whitelist as $extension) {
if (strcasecmp($file_extension, $extension) == 0) {
$is_valid_extension = true;
break;
}
}
if (!$is_valid_extension) {
HandleError("Invalid file extension");
exit(0);
}*/

// Validate file extension
    
if(in_array(end(explode('.'$file_name)), $backlist))
        
HandleError('Invalid file extension');



// Verify! Upload the file
    
if (!@move_uploaded_file($_FILES[$upload_name]['tmp_name'], $save_path.$file_name)) {
        
HandleError('File could not be saved.');
    }
    exit(
0);
    

/* Handles the error output. */
function HandleError($message) {
    echo 
$message;
    exit(
0);
}


?>
khwebdesigns is offline
Reply With Quote
View Public Profile
 
 
Register now for full access!
Old 09-02-2010, 12:24 PM Re: Multiple file upload
Extreme Talker

Posts: 168
Trades: 0
I cannot tell you how to modify your file, but this some code that I found and modified for my use. I changed it to allow for larger files, all types of files and by playing around you can change the colours to suit your needs.

http://webdeveloperplus.com/jquery/m...-using-jquery/
dgkindy is offline
Reply With Quote
View Public Profile
 
Old 09-03-2010, 07:58 AM Re: Multiple file upload
Extreme Talker

Posts: 149
Trades: 0
Put your code into an foreach($_FILES as $file_name)
and in your current code change $_FILES[$upload_name] to $_FILES[$file_name] (leave second index in place)
__________________
Free
Please login or register to view this content. Registration is FREE

Visit our
Please login or register to view this content. Registration is FREE
and
Please login or register to view this content. Registration is FREE
mimamo is offline
Reply With Quote
View Public Profile
 
Reply     « Reply to Multiple file upload
 

Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off





   
RSS Feed  Feeds: RSS   JS   XML
RSS Feed  Feeds for this forum: RSS   JS   XML



Page generated in 0.85075 seconds with 12 queries