Ver Mensaje Individual
  #2 (permalink)  
Antiguo 09/04/2008, 10:54
ronnieb
 
Fecha de Ingreso: marzo-2008
Ubicación: Buenos Aires
Mensajes: 86
Antigüedad: 16 años, 2 meses
Puntos: 0
Re: download imagenes

Prueba así:

Código PHP:
$name array_pop(explode('/'urldecode($url)));
$img urldecode($url);

$size filesize($img);

header("Pragma: ");            
header("Cache-Control:");
header("Content-length: $size");
header("Content-type: application/force-download");            
header('Content-Disposition: attachment; filename="'.$name.'"');
header("Content-Transfer-Encoding: binary");    

$fp=fopen("$img""r");    
fpassthru($fp);
fclose($fp); 
__________________
-ronnieb

WebTools