File "viewer07.php"

Full Path: /home/analogde/www/Analyse/explorer/viewer07.php
File size: 578 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

// Store the file name into variable
    $file = 'filename.pdf';
    $filename = 'filename.pdf';
    
    $file = 'https://analog-design.net/2024_PHP/2024_PHP_28_10_2024/explorer/aaa.pdf';
    $filename = 'https://analog-design.net/2024_PHP/2024_PHP_28_10_2024/explorer/aaa.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);

    ?>