Revision: 55810
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at February 23, 2012 03:19 by rickygri
Initial Code
<?php
//Link to download file with <a href="download.php" target="_blank">Download</a>
header('Content-disposition: attachment; filename=huge_document.pdf');
header('Content-type: application/pdf');
readfile('huge_document.pdf');
?>
Initial URL
Initial Description
Force downloadable file with php
Initial Title
Force downloadable
Initial Tags
php, download
Initial Language
PHP