Week 8
If you want a user to download a file (like a pdf or movie), use this markup and save it as a php file. It forces the browser to save, and not open, the file.
<?php
header('Content-disposition: attachment; filename=nameoffile.pdf');
header('Content-type: application/pdf');
readfile('nameoffile.pdf');
?>
Make sure to download the syllabus and review the requirements for your final project.