File chooser in a list
PermalinkWhat I wanted to achieve was a list of hidden input tags that generate an array:
<input type="hidden" name="myFiles[]"../>
but it seems like the file method:
<?=$al->file('ccm-b-file', 'fID', t('Choose File'), $bf);?>
can't be used for this because it appends "value" to the name of the input field and makes it therefore impossible to use in a list.
I found a few ways around that but thought it might be nice to have a simple method for this?

I know there is other stuff in the post array, but by using the count of the post array, i ensured that i had every possible asset_library selection captured at the cost of maybe a few iterations/checks of in_array for something that couldn't possibly exist since the post array is more than just images, the trade off was worth it to me as it really isn't a big deal :)
-Scott
Im struggling to select more then one image