Guest User

Untitled

a guest
Feb 19th, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. $file = 'C:wampwwwdisplay-pdf-file-using-phpdummy.pdf';
  2. $filename = 'dummy.pdf';
  3.  
  4. header('Content-type: application/pdf');
  5. header('Content-Disposition: inline; filename="' . $filename . '"');
  6. header('Content-Transfer-Encoding: binary');
  7. header('Content-Length: ' . filesize($file));
  8. header('Accept-Ranges: bytes');
  9.  
  10. @readfile($file);
  11. ?>
Add Comment
Please, Sign In to add comment