Jump to content

File Uploads


00Sven

Recommended Posts

Hi, I have been looking around this site for a while since I started PHP and finally decided to join.  Now on to the question...
I have set up a file uploader for my site.  This works perfectly except that I can only select one file at a time.  Is there a way that I can allow the user to select more than one file at a time?
Link to comment
Share on other sites

Several ways of doing this
<form method='post' action='' enctype='multipart/form-data'>
<input type='file' name='ufile[]' /><br />
<input type='file' name='ufile[]' />
Making the results into an array

or
<input type='file' name='ufile1' /><br />
<input type='file' name='ufile2' /><br />

and then loop through them

REMEMBER
when having file uploads in forms you need to name the enctype in the form tag
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.