Hola JavierB
Aquí te paso lo que me pediste, y gracias por la ayuda! Quedate tranquilo que si lo veo a tu jefe, no le digo nada
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<form enctype="multipart/form-data" method="post" action="upload.php" name="subirfoto">
<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>
<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(this)">
</font></div></td>
</tr>
</form>
</table>
Y aquí te paso el script que uso, en base a lo que me enviaste:
Num=5;
function Agregar(Fil){
obj=Fil.form;
Num++;
elem=document.createElement('input');
elem.type='file';
elem.name='foto'+Num;
obj.appendChild(elem);
}
Desde ya muchas gracias por tu ayuda, y disculpame la molestia
Saludos