Primero agradecer a GatorV y Pateketrueke por sus colaboraciones para llegar a finalizar la siguiente implementacion: "Grabar mas de un archivo en bd (en binario)". Y no olvidar en reconocer tambien el tutorial de Cluster que sirvio como base para las modificaciones del caso.
Asi que sin mas rodeo dejo este post para las personas como yo, que estamos iniciando en este mundo del php les puedan ser de utilidad. Y para aquellas compañeros que lo puedan mejorar (que acepte archivo de imagenes jpeg, png, gif; validar, etc) que nos seria de mucha ayuda.
Formulario:
Código php:
Archivo php:Ver original
<!-- <html> <head> <title>FORMULARIO</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> </head> <body> <form name="form" method="post" enctype="multipart/form-data" action="insertarBlob.php"> <table> <tr> <td align="right" width="19%">Foto 1:</td> <td width="61%"><input type="file" size="51" name="foto[]"></td> </tr> <tr> <td align="right" width="19%">Foto 2:</td> <td width="61%"><input type="file" size="51" name="foto[]"></td> </tr> <tr> <td align="right" width="19%">Foto 3:</td> <td width="61%"><input type="file" size="51" name="foto[]"></td> </tr> <td><input type="submit" name="enviar" value="Guardar"></td> <td><input type="reset" name="reset" value="Limpiar"></td> </table> </form> </body> </html> -->
Código php:
Ver original
<!-- <?php if($postback) { include('conec.php'); conectarse(); foreach($_FILES['foto']['tmp_name'] as $foto){ } foreach($_FILES['foto']['type'] as $foto){ $tipos[] = $foto; } $sql = "INSERT INTO catalogo(id,foto,foto1,foto2,mime,mime1,mime2,fecha) VALUES('','$fotos[0]','$fotos[1]','$fotos[2]','$tipos[0]','$tipos[1]','$tipos[2]','$fecha')"; //echo $sql; echo "<h2>Foto guardada correctamente en la base de datos</h2>"; } ?> -->
Bye,