I'm making a drupal 7 module that contains a form and I would like to upload multiple files in a row. Currently I'm using a managed_file type of input field.
$form['attachment'] = array(
'#title' => t('Attachment'),
'#type' => 'managed_file',
'#default_value' => variable_get('attachment', ''),
'#upload_location' => 'public://perm/',
);
This gives me the upload button, but only lets me upload one file. Is there a way I can tell this form to upload a file and still keep the option for a second upload open?