Skip to content

Instantly share code, notes, and snippets.

@maranemil
Created April 24, 2015 08:40
Show Gist options
  • Save maranemil/f585135deebdb841510b to your computer and use it in GitHub Desktop.
Save maranemil/f585135deebdb841510b to your computer and use it in GitHub Desktop.
Open a pdf in a new tab
// http://stackoverflow.com/questions/12730581/use-this-php-code-to-open-a-pdf-in-a-new-tab
header('Content-type: application/pdf');
header('Content-Disposition: inline; filename="' . $filename . '"');
header('Content-Transfer-Encoding: binary');
header('Content-Length: ' . filesize($file));
header('Accept-Ranges: bytes');
@readfile($file);
exit();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment