Bueno primera crea una pagina con el formulario para subir las imagenes:
Código HTML:
Ver original<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <!--
#apDiv1 {
position:absolute;
width:353px;
height:115px;
z-index:1;
left: 272px;
top: 28px;
}
-->
<form name="form1" method="post" action="res_archivo.php" enctype="multipart/form-data"> <table width="100%" border="0"> <td width="4%"> </td> <td width="75%"><input type="file" name="archivo1" id="archivo1"></td> <td><input type="file" name="archivo2" id="archivo2"></td> <td><input type="file" name="archivo3" id="archivo3"></td> <td><input type="file" name="archivo4" id="archivo4"></td> <td><input type="file" name="archivo5" id="archivo5"></td> <td><input type="file" name="archivo6" id="archivo6"></td> <td><input type="submit" name="button" id="button" value=":: Aceptar ::"></td>
Luego la pagina de respuestas la cual subira las imagenes a una carpeta llamada archivos.
Código PHP:
Ver original<?php
$archivo1 = "";
if(!empty($_FILES['archivo1'][ 'name' ])){ $archivo1=$_FILES['archivo1'][ 'name' ];
}
if ($archivo1 != ""){
}
$archivo2 = "";
if(!empty($_FILES['archivo2'][ 'name' ])){ $archivo2=$_FILES['archivo2'][ 'name' ];
}
if ($archivo2 != ""){
}
$archivo3 = "";
if(!empty($_FILES['archivo3'][ 'name' ])){ $archivo3=$_FILES['archivo3'][ 'name' ];
}
if ($archivo3 != ""){
}
$archivo4 = "";
if(!empty($_FILES['archivo4'][ 'name' ])){ $archivo4 =$_FILES['archivo4'][ 'name' ];
}
if ($archivo4 != ""){
}
$archivo5 = "";
if(!empty($_FILES['archivo5'][ 'name' ])){ $archivo5 =$_FILES['archivo5'][ 'name' ];
}
if ($archivo5 != ""){
}
echo "Los archivos han sido subidos con exito<br>";
echo "archivo1 = ".$archivo1."<br>";
echo "archivo2 = ".$archivo2."<br>";
echo "archivo3 = ".$archivo3."<br>";
echo "archivo4 = ".$archivo4."<br>";
echo "archivo5 = ".$archivo5."<br>";
?>
Por ultimo ya tienes las variables pues las guardas en tu base de datos....
Espero que te sirva.