Hola,, estoy haciendo mi tesis y necesito que me ayuden con un sistema d¿para subir varios arhcivos a las vez porfavor!!
Saluods
| ||||
Re: Upload Multiple de Arhcivos Bueno cualquier tutorial de PHP habla el tema de upload de ficheros ... bueno aqui te tengo un mini script, que mueve todo los archivos que recibe a un directorio, y el pone el mismo nombre pero le agrega 3 caracteres al azar. Código PHP: Código HTML: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <title>Documento sin título</title> </head> <body> <form action="subir.php" method="post" enctype="multipart/form-data" name="form1" id="form1"> <p> <label> <input type="file" name="file" /> </label> </p> <p> <label> <input type="file" name="file2" /> </label> </p> <p> <label> <input type="file" name="file3" /> </label> </p> <p> <label> <input type="file" name="file4" /> </label> </p> <p> <label> <input type="file" name="file5" /> </label> </p> <p> <label> <input type="file" name="file6" /> </label> </p> <p> </p> <p> <label> <input type="submit" name="Submit" value="Enviar" /> </label> </p> <p> </p> <p> </p> </form> </body> </html> Mas que nada son ejemplos, y hay tu ves ciertos parametros de seguridad (como comprobar una cookie o variable de session antes de mover los archivos, solo mover archivos de imagenes, etc ...) Saludos
__________________ Blog sobre Programación Una mirada conciente para identificar una solución sencilla. Ingeniería de Software. appvision.cl |