Código PHP:
<html>
<head>
<SCRIPT LANGUAGE="JavaScript">
function CrearBotones(Cant)
{
parseInt=(Cant);
if(!Cant) Cant=0;
alert(Cant);
for(Cont=1;Cont<=Cant;Cont++)
{
var b = document.createElement('input');
b.type = 'file';
b.value = 'Submit2';
b.name = 'Archivos[]';
document.body.appendChild(b);
//document.write("<br>");
}
//document.write("<input type='hidden' name='cant1' value='" + Cant + "'>");
return false;
}
</SCRIPT>
</head>
<body>
<form action="SubirArchivo.php" method="post" enctype="multipart/form-data" name="Form">
Cantidad:
<select name="CantFiles">
<script type="text/javascript">
for(x=1;x<=10;x++)
{
document.write("<option value="+ x +">"+ x+"</option>");
}
</script>
</select>
<input type="submit" name="Submit" value="Crear" onclick="return CrearBotones(document.Form.CantFiles.value);"/><br>
</form>
</body>
</html>
Código PHP:
onclick="return CrearBotones(document.Form.CantFiles.value);"
Cualquier duda o sugerencia se agradece mucho