Ver Mensaje Individual
  #6 (permalink)  
Antiguo 03/11/2014, 05:50
Avatar de enlinea777
enlinea777
 
Fecha de Ingreso: mayo-2008
Ubicación: frente al pc
Mensajes: 1.830
Antigüedad: 16 años, 5 meses
Puntos: 127
Respuesta: Subir imágenes a directorio en servidor

Prueba esto:
Código PHP:
   $fileName2 time().$fileName;
    
$lugar=dirname(__FILE__) . "/fotosproyectos/";
    if(
move_uploaded_file($_FILES['files']['tmp_name'],$lugar.$fileName2)){
     echo 
"entro";
        
$isertImagen mysql_query("INSERT INTO tbl_foto_ideas_proyectos
        (name, type, size, content, id_ip) VALUES
        ('$fileName', '$fileType', '$fileSize', '$content', '$IdIp');"
);
}else{
echo 
"NO entro";