<?php
header("Content-type:application/pdf");
// It will be called downloaded.pdf
header("Content-Disposition:attachment;filename='downloaded.pdf'");
echo "TEST Downloading pdf file";
// The PDF source is in original.pdf
readfile("../RCM.pdf");
?>