Показать сообщение отдельно
  #3 (permalink)  
Старый 30.11.2012, 00:14
Аватар для lord2kim
Профессор
Отправить личное сообщение для lord2kim Посмотреть профиль Найти все сообщения от lord2kim
 
Регистрация: 03.05.2011
Сообщений: 848

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>
Ответить с цитированием