File "pdf01.php"

Full Path: /home/analogde/www/Prog/MMM/Fusion/pdf01.php
File size: 263 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

$filename = "https://analog-design.net/Fusion/dmPDF.pdf"; 
  
// Header content type 
header("Content-type: application/pdf"); 
  
header("Content-Length: " . filesize($filename)); 
  
// Send the file to the browser. 
readfile($filename); 

?>