Tagged Questions
3
votes
2answers
2k views
How can i do multiple file upload using Drupal 7 Form API?
I'd like to upload multiple files using Form API.
'#type' => 'file' provides upload only one file.
$form['picture_upload'] = array(
'#type' => 'file',
'#title' => t(''),
'#size' ...
0
votes
1answer
1k views
Drupal 7 retain file upload
I have a file upload form
how can I retain this file when there are other validation errors so that the user doesn't have to upload the file again?
I tried this in my validation function but it ...