Escargot,
<head>
<title>Загрузка файлов на сервер</title>
</head>
<body>
<h2><p><b> Форма для загрузки файлов </b></p></h2>
<form action="http://localhost/add.php" id="frm" method="post" enctype="multipart/form-data" name="firstform">
<input type="button" value='Добавить поле' onclick="newInput()"> <br>
<input type="file" name="fname[]"><br>
<input type="submit" value="Загрузить" id="firstinput"><br>
</form>
<script language="JavaScript">
function newInput() {
var firstform = document.getElementById('frm');
var newinput = document.createElement('input');
var br = document.createElement("br");
newinput.type = "file";
newinput.name = "fname[]";
firstform.appendChild(newinput); firstform.appendChild(br);
}
</script>
</body>