Skip to content

Instantly share code, notes, and snippets.

@CodeBrauer
Last active June 2, 2016 14:17
Show Gist options
  • Save CodeBrauer/e6a37d7aed9a5957f1c35b2b1dc686f3 to your computer and use it in GitHub Desktop.
Save CodeBrauer/e6a37d7aed9a5957f1c35b2b1dc686f3 to your computer and use it in GitHub Desktop.
Open PDF instead downloading it with php
<?php
/* instead using this headers
header('Content-type: application/octet-stream');
header('Content-Disposition: attachment; filename="'.$filename.'"');
// use this headers */
header("Content-type: application/pdf");
header("Content-Length: ".$length);
header("Content-Disposition: inline; filename=\"".$filename."\"");
@CodeBrauer
Copy link
Author

CodeBrauer commented Jun 1, 2016

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment