Ver Mensaje Individual
  #4 (permalink)  
Antiguo 27/09/2007, 11:06
Avatar de Seppo
Seppo
 
Fecha de Ingreso: marzo-2005
Ubicación: Buenos Aires, Argentina
Mensajes: 1.284
Antigüedad: 19 años, 1 mes
Puntos: 17
Re: problema con descarga de pdf con PHP (ya lo intenté todo (?))

Probá así

Código PHP:
<?php
$f 
"Catalogo.pdf";
header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=\"" $f "\"\n");
readfile($f);
?>
Si no anda, deshabilitá el header "content-type" para ver si no está imprimiendo un error PHP