Not true. I find it a LOT easier to do arrays with multiple file uploads.
<input type="file" name="upload[]">
<input type="file" name="upload[]">
etc
submit.php:
for($i = 0; $i < sizeof($HTTP_POST_FILES['upload']['name']); $i++) {
if(!empty($HTTP_POST_FILES['upload']['name'][$i]) {
copy($HTTP_POST_FILES['upload']['tmp_name'][$i], $destination . $HTTP_POST_FILES['upload']['name'][$i]);
}
}
If you need further help, I am only an email away (or post)