Ver Mensaje Individual
  #8 (permalink)  
Antiguo 16/12/2004, 12:06
Avatar de JavierB
JavierB
Colaborador
 
Fecha de Ingreso: febrero-2002
Ubicación: Madrid
Mensajes: 25.052
Antigüedad: 22 años, 2 meses
Puntos: 772
Hola de nuevo.

Prueba esto:
Código HTML:
<html>
<head>
<title>Untitled</title>
<script>
Num=5;
function Agregar(){
  obj=document.getElementById('tabla');
  f=document.getElementById('fila');
  Num++;
  elTr=document.createElement('tr');
  elTd=document.createElement('td');
  elTd.innerHTML='Foto '+Num+':';
  elTr.appendChild(elTd);
  elTd=document.createElement('td');
  elem=document.createElement('input');
  elem.type='file';
  elem.name='foto'+Num;
  elTd.appendChild(elem);
  elTr.appendChild(elTd);
  obj.insertBefore(elTr,f)
}</script>
</head>
<body>
<form enctype="multipart/form-data" method="post" action="upload.php" name="subirfoto">
<table width="100%" border="1" cellspacing="0" cellpadding="0">
<tbody id="tabla">
<input type='hidden' name='usuario' value='1'>
<tr>
<td colspan="2" class="celda"><div align="center" class="titulo"><font size="2" face="Courier New, Courier, mono">Enviar Fotos para revelar </font></div></td>
</tr><tr>
<td class="celda">Foto 1: </td>
<td class="celda"><input name="foto" type="file" class="txtGde" id="foto"></td>
</tr>
<tr>
<td class="celda">Foto 2: </td>
<td class="celda"><input name="foto2" type="file" class="txtGde" id="foto2"></td>
</tr>
<tr>
<td class="celda">Foto 3. </td>
<td class="celda"><input name="foto3" type="file" class="txtGde" id="foto3"></td>
</tr>
<tr>
<td class="celda">Foto 4: </td>
<td class="celda"><input name="foto4" type="file" class="txtGde" id="foto4"></td>
</tr>
<tr>
<td class="celda">Foto 5: </td>
<td class="celda"><input name="foto5" type="file" class="txtGde" id="foto5"></td>
</tr>
<tr id="fila">
<td colspan="2"><div align="center">
<input name="enviar" type="submit" class="celda" value="Enviar">
<input type="button" name="Submit" value="Agregar Foto" onClick="Agregar()">
</font></div></td>
</tr>
</tbody>
</table>
</form>
</body>
</html> 
Saludos,