File "view_pdf02.php"

Full Path: /home/analogde/www/Administratif/FTP/Monsta-FTP-master/view_pdf02.php
File size: 355 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
  
// Store the file name into variable
$file = 'test.pdf';
$filename = 'test.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);
  
?>