Ver Mensaje Individual
  #13 (permalink)  
Antiguo 21/04/2004, 09:48
Avatar de Reynier
Reynier
 
Fecha de Ingreso: noviembre-2002
Ubicación: Por ahí en algún sitio
Mensajes: 1.844
Antigüedad: 21 años, 5 meses
Puntos: 1
Nada

Lo he hecho como me dijiste y me da estos errores:
Cita:
Warning: move_uploaded_file(upload/lapiz.gif): failed to open stream: No such file or directory in c:\program files\apache group\apache\htdocs\upload\3ro.php on line 4

Warning: move_uploaded_file(): Unable to move 'C:\WINDOWS\TEMP\php189.tmp' to 'upload/lapiz.gif' in c:\program files\apache group\apache\htdocs\upload\3ro.php on line 4

Warning: move_uploaded_file(upload/1082320851.jpg): failed to open stream: No such file or directory in c:\program files\apache group\apache\htdocs\upload\3ro.php on line 4

Warning: move_uploaded_file(): Unable to move 'C:\WINDOWS\TEMP\php18A.tmp' to 'upload/1082320851.jpg' in c:\program files\apache group\apache\htdocs\upload\3ro.php on line 4
No OK
El código de index.html y 2do.php se mantienen iguales. Por eso no los pongo. El de 3ro.php lo cambié por este:
3ro.php
Código PHP:
<?php
 $tmpdir 
"upload/";
 for(
$i=0;$i<$_POST['cantidad'];$i++){
  
$bool move_uploaded_file($HTTP_POST_FILES['file']['tmp_name'][$i], $tmpdir.$HTTP_POST_FILES['file']['name'][$i]);
 }
 if(
$bool){
  
printf("OK");
 }else{
  
printf("No OK");
 }
?>
Salu2
__________________
Ing. Reynier Pérez Mira