In PHP if you give the same name with square brackets to several inputs, it's going to create an array with the values of all inputs, like that:
<input name="userfile[]" type="file" />
<input name="userfile[]" type="file" />
My question is could I do that but with the multiple attribute, like:
<input name="userfile[]" type="file" multiple />
<input name="userfile[]" type="file" multiple />
This is going to create an array with the elements of each input?