| Server IP : 93.86.61.54 / Your IP : 216.73.216.60 Web Server : Apache/2.4.62 (Ubuntu) System : Linux rasin.ddns.net 6.8.0-124-generic #124~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Tue May 26 21:05:19 UTC x86_64 User : www-data ( 33) PHP Version : 8.4.22 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /var/www/html/projects/radvre/admin/ |
Upload File : |
<?php
/*************************************
Project: LogDogPlan
File :
Version: 2021-10-25
Author : M. Kukic
Note : PHP + MySQL v5/7 + Apache
**************************************/
//
// http://net-nas/www/logdogplan/read-pdf.php?postid=help.pdf
//
// Cita PDF storovan file
//
$postid = $_GET['postid'];
//$postid="help.pdf";
// The location of the PDF file
//$filename = "/path/to/the/file.pdf";
//$filename = "//net-tim/Kukic/Dokumenta-Kuca/help-usr.pdf";
$filename = $postid;
// Header content type
//header("Pragma: public");
header("Content-type: application/pdf");
//
header("Content-Length: " . filesize($filename));
//
// Send the file to the browser.
readfile($filename);
//echo "<a href='javascript:history.go(-1)'><img src='img/back.png'>";
?>