 
			
				24/10/2007, 09:06
			
			
			     |  
  |      |  
  |      Re: Abrir ventana diálogo descarga PDF        otro codigo en php   
Este codigo te ayudara a forzar una descarga, para que no se ejecute con el navegador al hacer click sobre el      
<?   
$id = "archivo.pdf";  
$enlace = $path_a_tu_doc."/".$id;  
header ("Content-Disposition: attachment; filename=".$id."\\n\\n");  
header ("Content-Type: application/octet-stream"); 
header ("Content-Length: ".filesize($enlace)); 
readfile($enlace);   
?>           |