Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 254839
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T21:52:50+00:00 2026-05-11T21:52:50+00:00

I was wondering if anyone knew the best way to dynamically create an upload

  • 0

I was wondering if anyone knew the best way to dynamically create an upload form?

Here’s what I’m trying to achieve: The code shown below allows one upload, I want to have a button that when pressed, should add another form for file upload. So, if I want to upload – let’s say 7 files, I want to press the button 7 times to create those upload forms, each on it’s own row.

Is there anyway I can do it?

Thanks for your assistance:

<html>
    <head>
        <title> Multiple File Uploads </title>
    </head>
    <body>
        <form enctype="multipart/form-data" action="uploader.php" method="POST">
            Choose a file to upload: <input name="uploadedfile" type="file" /><br />
            <input type="submit" value="Upload File" />
        </form>
    </body>
</html>
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-11T21:52:50+00:00Added an answer on May 11, 2026 at 9:52 pm

    Usually you do something like this, Client-side:

    <div id='Uploadcontainer'>
       <input type='file' name='uploadfiles[]' class='uploadfile' />
    </div>
    <button id='extraUpload'>Add another field</button>
    <script type='text/javascript'>
      $('#extraUpload').click(function(){
          $('.uploadfile:last').clone().appendTo('#uploadContainer');
      });
    </script>
    

    That is using jQuery. Then on the server side you can easy loop over the $_FILES[‘uploadfiles’] array:

    foreach($_FILES['uploadfiles'] as $file){
      //do stuff with $file
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I was wondering if anyone knew the best way of getting in a UITableView,
I was wondering if anyone knew the best way to dispose of a class
Wondering if anyone knew how to achieve the effect presented in the slider here:
I was wondering if anyone knew of a way to do some client side
I was wondering if anyone knew a good way of creating an AS3 Facebook
I was wondering if anyone knew with XCode 4.1 how to create a shell
I was wondering if anyone knew of a simple way to implement graphing in
I was wondering if anyone knew of a way to mimic the .show(); method
I was wondering if anyone knew a good way to convert a multi-page PDF
I was wondering whether anyone knew of a way to attach an event/callback to

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.