Ver Mensaje Individual
  #4 (permalink)  
Antiguo 02/01/2007, 16:43
Avatar de erlingfiallos
erlingfiallos
 
Fecha de Ingreso: febrero-2005
Ubicación: Mexico ahora
Mensajes: 499
Antigüedad: 19 años, 3 meses
Puntos: 9
Re: Descargar archivos PHP/IE7

Haber intenta con eso :

Código PHP:
<?php
ob_start
();

header("Content-type: application/pdf");
header("Content-Length: ".(string)(filesize($str_file_contents)) );
header("Content-Disposition: attachment; filename=preview.pdf");
header("Cache-control: private");
header("Pragma: public");
header("Content-Transfer-Encoding: Binary")

print(
$str_file_contents);

ob_end_flush();

?>