Ver Mensaje Individual
  #1 (permalink)  
Antiguo 29/11/2011, 12:14
Maru77
 
Fecha de Ingreso: agosto-2003
Mensajes: 524
Antigüedad: 21 años, 3 meses
Puntos: 5
Subir 2 imágenes

Hola!

En un form tengo

Código HTML:
 <form enctype="multipart/form-data" method="post" action="ingresar.php">
....
<tr>
       <td>Imagen 1</td>
       <td>&nbsp;</td>
       <td><input type="file" name="file[]" /></td>
       <td>&nbsp;</td>
     </tr>
      <tr> 
        <td style="font-weight: bold;">&nbsp;</td>
        <td>&nbsp;</td>
		<td>&nbsp;</td>
		<td>&nbsp;</td>
      </tr>
     <tr> 
        <td>Imagen 2</td>
        <td width="20">&nbsp;</td>
	   <td><label>
	     <input type="file" name="file[]" />
	   </label></td>
		<td>&nbsp;</td>
      </tr> 
...
y para subir las imagenes uso el siguiente codigo:

Código PHP:
if(isset($_POST['file'])) {  
 
    foreach (
$_POST['file'] as $v) {
     
             
$destino='ruta/upload';
             
$imagen$_FILES['file']['name'];
             
$tipo_archivo $_FILES['file']['type'];                  
             
$tamano_archivo $_FILES['file']['size'];
             
$nomimag=$v.'.jpg';
     
    if (
strpos($tipo_archivo"jpeg") || strpos($tipo_archivo"jpg" ))
           {
     
     if (
move_uploaded_file($_FILES['file']['tmp_name'],$destino.'/'.$nomimag))
           {
            }
//fin del if para mover la foto      
        
}//fin del if para mover la foto
 
 
}      
}

    
$Query "INSERT INTO tabla (id, marca, nombre, tipo, img1, img2) VALUES ('', '$marca', '$nombre', '$tipo', '$nomimag', '$nomimag')";
    
    
    
$insertar mysql_query($Query); 
Pero no está subiendo las fotos, el registro lo ingresa pero las fotos no.
Alguna idea?
__________________
Saludos!!!
Maru.-