Monday, March 12, 2007

How to force user to download PDF file?

<?php
// Change the header to allow PDF download
header('Content-type: application/pdf');

// The downloaded file will be called as savethis.pdf
header('Content-Disposition: attachment; filename="savethis.pdf"');

// The source PDF to be downloaded is source.pdf
readfile('source.pdf');
?>

No comments: