If filenameĀ is the absolute path to pdf file:
<?php
header("Cache-Control: public");
header('Content-type: application/pdf');
header('Content-Disposition: inline; filename="' . $file . '"');
header('Content-Transfer-Encoding: binary');
header('Content-Length: ' . filesize($file));
@readfile($file);