Ver Mensaje Individual
  #3 (permalink)  
Antiguo 08/02/2012, 14:49
esaenz22
(Desactivado)
 
Fecha de Ingreso: abril-2008
Mensajes: 787
Antigüedad: 16 años
Puntos: 7
Respuesta: error al subir mutiples archivos

he colocado is_uploaded_file y si me muestra error.

Código PHP:
Ver original
  1. if (is_uploaded_file($_FILES))
  2. {
  3.     $handle_thb = new Upload($file);
  4.     $handle_thb->image_resize            = true;
  5.     $handle_thb->image_ratio_y           = true;
  6.     $handle_thb->image_x                 = 200;
  7.     $handle_thb->Process('imagenes/thumbnail/');
  8.     $imagen_thb = $handle_thb->file_dst_name;
  9.     $handle_thb->clean();
  10. }
  11. else
  12. {
  13.     echo "error";
  14. }

lo que no entiendo si la variable $file esta recorriendo los nombres de las imagenes con el bucle foreach.

saludos.