Using:
<INPUT TYPE="file" NAME="userfile[]">
When parsing the userfile[] array in a for loop, how do you access the PHP variables $userfile_name, $userfile_size, $userfile_type, etc.. .?
$userfile[$i]name doesn't work, nor does simply using $userfile_name, or $userfile[]name ..?
I don't know how to access them using $HTTP_POST_FILES either, the same problem presents itself..
$HTTP_POST_FILES['userfile[$i]']['name'] ???
-j