| Current Path : /home/tiporg/public_html/ |
| Current File : /home/tiporg/public_html/view-projects.php |
<?php
include_once("inc/functions.php");
$pdf = mctdecode($_REQUEST['pdf'],'URLK');
$file = trim(ltrim(rtrim($pdf,'YzJ'),'MCe'));
header("Content-type: application/pdf");
header("Content-Disposition: inline; uploads/$file");
header('Content-Length:'.filesize("uploads/".$file));
readfile("uploads/$file");
?>