Código:
<?php $pdf = $_GET['pdf']; $ruta = "admin"; $enlace = $ruta."/".$pdf; header("Content-Type: application/pdf"); header('Content-Disposition: inline; filename="'.$pdf.'"'); header ("Content-Type: application/octet-stream"); header ("Content-Length: ".filesize($enlace)); readfile($enlace); ?>