Ver Mensaje Individual
  #3 (permalink)  
Antiguo 10/03/2009, 20:33
juanf03
 
Fecha de Ingreso: enero-2008
Mensajes: 125
Antigüedad: 16 años, 3 meses
Puntos: 0
Respuesta: Duda ciclo mezcla php+HTML

No se solucionó, sigue tirando error en la linea 18

Código PHP:
<html>
<title>
Subir foto
</title>
<body bgcolor="#399926">
<b>Formulario de subida de fotos</b></br>
Filepath:<form action="procesar.php" method="post" enctype="multipart/form-data">
<?php 
$numero
=$_POST['num'];
for (
$i=1;$i<=$numero;$i+=1){?>
<input name="archivo" type="file" size="35" />
<?;}
?>
<input name="enviar" type="submit" value="Upload File" />
<input name="action" type="hidden" value="upload" /> 
</form>
</body>
</html>