Multiple File Upload in PHP using IFRAME
By: Tom @ nono . be in PHP Tutorials on 2012-12-05
Handling multiple uploads can be a lot more user friendly with a little help of javascript and form posting to iFrame... To make it all a little bit more edible, you can use AJAX and divs to provide loader gifs etc...
Work with separate forms; note the target of each form = csr. It is the ID of an iFrame somewhere on the page. I call it CSR as short for Client-Server-Request.
Also note the hidden input formId that we will use in the php upload handler.
disable submitting the form using onsubmit="return false"...
Finally a button outside the form structure starting a javascript function onclick="upload(document.form_0, document.loader_0)"
<form onsubmit="return false" id="file_0" name="file_0" action="upload.php" target="csr" enctype="multipart/form-data" method="post" style="margin:px; padding:0px"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td>File 1:</td> <td> <input type="hidden" id="formId" name="formId" value="0" /> <input type="hidden" id="MAX_FILE_SIZE" name="MAX_FILE_SIZE" value="1000000" /> <input type="file" id="userFile" name="userFile" class="invulveld100pct" /> </td> <td> <div id="loader_0"></div> </td> </tr> </table> </form> <form onsubmit="return false" id="file_1" name="file_1" action="upload.php" target="csr" enctype="multipart/form-data" method="post" style="margin:px; padding:0px"> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> <td>File 2:</td> <td> <input type="hidden" id="formId" name="formId" value="1" /> <input type="hidden" id="MAX_FILE_SIZE" name="MAX_FILE_SIZE" value="1000000" /> <input type="file" id="userFile" name="userFile" class="invulveld100pct" /> </td> <td> <div id="loader_0"></div> </td> </tr> </table> </form> <input type="button" onclick="upload(document.form_0, document.loader_0)" /> <iframe id="csr" name="csr" height="1" width="1" style="border:0px none"></iframe> <!--//The javascript://--> <script type="javascript"> function upload(form, loader){ //only do this if the form exists if(form){ //display a loadbar loader.innerHTML = 'loading.gif'; form.submit(); } } </script>
The php upload handler upload.php Remember, your page will not refresh because the post is sent to your CSR iFrame.
<?php //there are enough examples around to handle the upload... //the only important difference is the error reporting and the starting of the next form upload... //presume $uploadOk is a boolean that is true if the upload succeeds; false if it fails... //note the use of "parent" in the outputted javascript... the script is outputted into the CSR iFrame... therefor it needs parent to acces dom objects and javascript of the main page. $currentFormId = $_POST['formId']; $nextFormId = $_POST['formId'] + 1; echo "<script type=\"javascript\">"; //change the content of your loader div to a desired image if($uploadOk){ echo "parent.loader_{$currentFormId}.innerHTML = 'uploadOk.gif';"; } else { echo "parent.loader_{$currentFormId}.innerHTML = 'uploadNotOk.gif';"; } //submit the next form... the javascript function will only perform it if the form exists. echo "parent.upload(document.form_{$nextFormId}, document.loader_{$nextFormId});"; echo "</script>"; ?>
This is just a quick draft of how to handle multiple files this way and I'm sure you would need to optimize the workflow to fit your needs, but the benefit of working this way is although your user still chooses multiple files, they are in fact posted one by one... This means your MAX_FILE_SIZE is determined for each file separately as opposed to the combined size of all files in one post.
Add Comment
This policy contains information about your privacy. By posting, you are declaring that you understand this policy:
- Your name, rating, website address, town, country, state and comment will be publicly displayed if entered.
- Aside from the data entered into these form fields, other stored data about your comment will include:
- Your IP address (not displayed)
- The time/date of your submission (displayed)
- Your email address will not be shared. It is collected for only two reasons:
- Administrative purposes, should a need to contact you arise.
- To inform you of new comments, should you subscribe to receive notifications.
- A cookie may be set on your computer. This is used to remember your inputs. It will expire by itself.
This policy is subject to change at any time and without notice.
These terms and conditions contain rules about posting comments. By submitting a comment, you are declaring that you agree with these rules:
- Although the administrator will attempt to moderate comments, it is impossible for every comment to have been moderated at any given time.
- You acknowledge that all comments express the views and opinions of the original author and not those of the administrator.
- You agree not to post any material which is knowingly false, obscene, hateful, threatening, harassing or invasive of a person's privacy.
- The administrator has the right to edit, move or remove any comment for any reason and without notice.
Failure to comply with these rules may result in being banned from submitting further comments.
These terms and conditions are subject to change at any time and without notice.
- Data Science
- Android
- React Native
- AJAX
- ASP.net
- C
- C++
- C#
- Cocoa
- Cloud Computing
- HTML5
- Java
- Javascript
- JSF
- JSP
- J2ME
- Java Beans
- EJB
- JDBC
- Linux
- Mac OS X
- iPhone
- MySQL
- Office 365
- Perl
- PHP
- Python
- Ruby
- VB.net
- Hibernate
- Struts
- SAP
- Trends
- Tech Reviews
- WebServices
- XML
- Certification
- Interview
categories
Related Tutorials
Send push notifications using Expo tokens in PHP
PHP convert string to lower case
A Basic Example using PHP in AWS (Amazon Web Services)
Different versions of PHP - History and evolution of PHP
PHP code to write to a CSV file for Microsoft Applications
PHP code to write to a CSV file from MySQL query
PHP code to import from CSV file to MySQL
Password must include both numeric and alphabetic characters - Magento
Resume or Pause File Uploads in PHP
PHP file upload prompts authentication for anonymous users
PHP file upload with IIS on windows XP/2000 etc
Comments