Ver Mensaje Individual
  #3 (permalink)  
Antiguo 26/05/2005, 05:16
MikiBroki
 
Fecha de Ingreso: abril-2002
Mensajes: 1.014
Antigüedad: 22 años
Puntos: 8
Prueba esto:


Código:
<?php
$len = filesize($filename);
header("Content-type: application/pdf");
header("Content-Disposition: inline; filename=foo.pdf");
readfile($filename);
?>
Lo he sacado del siguiente enlace:

http://php.grn.es/manual/es/ref.pdf.php

Ya me dirás si te sirve. Un saludo.