In PHP, when you submit a file input that has multiple files (as in, it is named <input ... name='foo[]' />
), it organizes it oddly. The $_FILES
array contains a single key, then within that key is an array with keys "name", "tmp_name", "size", "type", "error"
. Within each of those keys is an array with the data for each file.
Why?