Click here to Skip to main content
Licence CPOL
First Posted 15 Jul 2007
Views 80,851
Downloads 2,016
Bookmarked 23 times

JavaScript/PHP - Multiple File Upload

By | 15 Jul 2007 | Article
Option to add n number of file input controls to upload multiple files.

Introduction

This snippet allows users to add multiple files to be uploaded. By default, only one file upload control is visible. Upon clicking the "+" icon, more controls are added.

Screenshot - default.jpg

Default form

Screenshot - more.jpg

More file controls added

Background

Very often to allow multiple file uploads, an unnecessary number of file upload controls are preloaded in forms. This code is an example of how to keep the form clean without losing the important features.

Using the Code

This code snippet is developed with PHP and needs an Apache webserver to run. The "uploads" directory needs file read-write permission. To use it in an application, you will need to add a database interface to store the uploaded information. It is a single file that has both the form and its handler.

The script has two functions: uploadForm and upload. uploadForm displays the form and upload does the form handling.

<?php
if($_POST['pgaction']=="upload")
 upload();
else
 uploadForm();
?>

The above is an example for new programmers on how to deine a form and its handling in the same script.

<tr class="txt">
   <td valign="top">
    <div id="dvFile">
     <input type="file" name="item_file[]">
    </div>
   </td>
   <td valign="top">
    <a href="javascript:_add_more();" title="Add more">
     <img src="plus_icon.gif" border="0">
    </a>
   </td>
</tr>

The hyperlink to the icon invokes the JavaScript function _add_more, which adds more control to the form. I have used the div to identify a block of the form and populate more controls in this block.

function _add_more() {
  var txt = "<br><input type=\"file\" name=\"item_file[]\">";
  document.getElementById("dvFile").innerHTML += txt;
}

The JavaScript function adds more controls as required.

if(count($_FILES["item_file"]['name'])>0) { //check if any file uploaded
  $GLOBALS['msg'] = ""; //initiate the global message
  for($j=0; $j < count($_FILES["item_file"]['name']); $j++) { 
  //loop the uploaded file array
   $filen = $_FILES["item_file"]['name']["$j"]; //file name
   $path = 'uploads/'.$filen; //generate the destination path
   if(move_uploaded_file($_FILES["item_file"]['tmp_name']["$j"],$path)) {
   //upload the file
    $GLOBALS['msg'] .= "File# ".($j+1)." ($filen) uploaded successfully<br>";
    //Success message
   }
  }
 }
 else {
  $GLOBALS['msg'] = "No files found to upload"; //No file upload message 
}

The uploaded file handler function checks for uploaded files, and if found, stores them in the web server.

Future Enhancement

In the code, if the user chooses a file and then adds more controls, the previous file information is not stored and is lost. I need to add a feature to store the previously chosen file.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Anisur RM

Web Developer

India India

Member

Hi,
I am a web-application developer and like to play around with different web technologies for fun. I already dug some ground in JavaScript, PHP, Java, MySQL, Apache and Linux and now like to dig some in C#. I will try to share some of my experience with you, which you may or may not like. Please advice suggestion to improve them.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
NewsPHP PinmemberRoza Can8:38 17 May '12  
Questioncan i use this script without js Pinmemberkmkmahesh21:18 21 Feb '12  
AnswerRe: can i use this script without js PinmemberAnisur RM18:25 28 Feb '12  
Questionsend attached to email PinmemberMember 844554520:07 30 Nov '11  
AnswerRe: send attached to email PinmemberAnisur RM1:38 1 Dec '11  
GeneralRe: send attached to email PinmemberMember 844554514:10 1 Dec '11  
Questionhow can i add more field and save to database PinmemberFemi Orogun4:25 19 Oct '11  
AnswerRe: how can i add more field and save to database PinmemberAnisur RM1:43 1 Dec '11  
Questionupload images only PinmemberMember 81167596:22 27 Jul '11  
AnswerRe: upload images only PinmemberAnisur RM1:46 1 Dec '11  
GeneralMy vote of 4 PinmemberJohn Ortiz2:15 19 Jun '11  
Generalthank you PinmemberMohamed7IBrahim7:16 22 Nov '10  
GeneralMy vote of 2 PinmemberR o n n y23:19 25 Apr '10  
QuestionClears selections when adding additional fields PinmemberShawn Poquette19:10 9 Feb '09  
AnswerRe: Clears selections when adding additional fields Pinmemberpetershaman3:21 13 Feb '09  
GeneralRe: Clears selections when adding additional fields PinmemberThomasGatt0:18 11 Apr '09  
AnswerRe: Clears selections when adding additional fields Pinmembermpiper11:40 2 May '09  
AnswerRe: Clears selections when adding additional fields PinmemberCattani7:57 18 Apr '09  
QuestionRe: Clears selections when adding additional fields Pinmembermpiper11:49 2 May '09  
AnswerRe: Clears selections when adding additional fields Pinmembertruonglq2:42 11 Jun '09  
GeneralRe: Clears selections when adding additional fields Pinmemberold*vine13:51 3 Aug '09  
GeneralRe: Clears selections when adding additional fields Pinmembertruonglq0:17 17 Aug '09  
Questionwhat if the file uploaded has same file name? Pinmemberarriojb5:07 8 Feb '09  
AnswerRe: what if the file uploaded has same file name? PinmemberAmgedOsman22:38 28 Aug '10  
GeneralThanks Pinmemberthebirdman19843:13 12 Dec '08  

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.

Permalink | Advertise | Privacy | Mobile
Web03 | 2.5.120517.1 | Last Updated 16 Jul 2007
Article Copyright 2007 by Anisur RM
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid