<span aria-hidden="true" id="how-do-i-enable-multi-file-upload"></span>

# How do I enable multi-file upload?

Transloadit supports several ways for users to upload multiple files at once.

**HTML2**

The easiest way to allow users to select multiple files, is to use an input field like this:

```html
<input name="my_file" multiple="multiple" />

```

This will allow users with an HTML2+ capable browser to select multiple files in the file selection dialog box.

Supported Browsers:

* Firefox >= 3.6
* Google Chrome >= 2
* Safari >= 4

For Opera, use their [Web Forms 2.0⁠](https://www.w3.org/TR/web-forms-2/) support, which has been available since 2006:

```html
<input type="file" min="1" max="9999" />

```

More information in our [HTML2 integration docs](/docs/sdks/multipart-form.md).

**HTML5**

For more modern browsers, it's recommended to use [our file uploader Uppy](/docs/sdks/uppy.md) which by default allows uploading multiple files at a time.

## See also:

[How does Transloadit store Assemblies?](/docs/faq/how-we-store-assemblies.md)

[Why am I being charged by Debuggable Ltd?](/docs/faq/why-charged-by-debuggable.md)

[Why are there /meta/read charges in my billing?](/docs/faq/meta-read-charges.md)
