<?php
$filename='PDFFILE.pdf';
// We'll be outputting a PDF
header('Content-type: application/pdf');
// It will be called downloaded.pdf
header('Content-Disposition: attachment; filename="$filename"');
// The PDF source is in original.pdf
readfile("$filename");
?>