File "pdf01.php"

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

<?php

$pdfUrl = 'https://analog-design.net/2024_PHP/2024_PHP_28_10_2024/explorer/aaa.pdf';
    

header("Content-type: application/pdf");
header("Content-Disposition: inline; filename=aaa.pdf");
@readfile($pdfUrl);

?>