Answers for "save page html to pdf header php"

PHP
0

Php header PDF Open in Browser

$file = 'headerPdfFile.pdf';

$filename = 'IamPdfFile.pdf';
  
// Header content type
header('Content-type: application/pdf');
  
header('Content-Disposition: inline; filename="' . $filename . '"');  
  
// Read the file
@readfile($file);
Posted by: Guest on October-03-2021

Browse Popular Code Answers by Language