File Upload
Make sure you have read the previous section on HTML Form before you continue.
To allow users to upload files to your form:
Things to do
- Make sure your
<form>
tag includes the attributeenctype="multipart/form-data"
. - Add an input field with the attributes
type="file"
andname="files"
inside your form. This lets users select files to upload.
File uploading is only available in our paid plan.