File "pdf02.php"

Full Path: /home/analogde/www/Prog/File explorer/pdf02.php
File size: 452 bytes
MIME-type: text/x-php
Charset: utf-8

<?php 
  
// Store the file name into variable 
$file = "https://analog-design.net/Fusion/dmPDF.pdf"; 
$filename = "https://analog-design.net/Fusion/dmPDF.pdf";
  
// Header content type 
header('Content-type: application/pdf'); 
  
header('Content-Disposition: inline; filename="' . $filename . '"'); 
  
header('Content-Transfer-Encoding: binary'); 
  
header('Accept-Ranges: bytes'); 
  
// Read the file 
@readfile($file); 
  
?>