Ver Mensaje Individual
  #3 (permalink)  
Antiguo 02/02/2016, 13:34
Avatar de chronos682
chronos682
 
Fecha de Ingreso: febrero-2004
Ubicación: Tunja - Boyacá - Colombia
Mensajes: 627
Antigüedad: 20 años, 11 meses
Puntos: 69
Respuesta: Como visualizar pdf desde un link hecho en php

Mira este código:

Código PHP:
Ver original
  1. <?php
  2. $file = './path/to/the.pdf';
  3. $filename = 'Custom file name for the.pdf'; /* Note: Always use .pdf at the end. */
  4.  
  5. header('Content-type: application/pdf');
  6. header('Content-Disposition: inline; filename="' . $filename . '"');
  7. header('Content-Transfer-Encoding: binary');
  8. header('Content-Length: ' . filesize($file));
  9. header('Accept-Ranges: bytes');
  10.  
  11. readfile($file);
  12. ?>

Debes tener en cuenta que en la variable $file esté la ruta completa al archivo pdf o si no no va a funcionar. Yo creo que ese es el error que tienes, por eso sale en blanco el pdf al visualizarlo.
__________________
Si te gustó la respuesta dale +1

HERNÁN G. SIABATO M.
[email protected]