// We'll be outputting a mp3
header('Content-Type: application/mp3');
// It will be called downloaded.mp3
header('Content-Disposition: attachment; filename="downloaded.mp3"');
// The PDF source is in original.mp3
readfile('/var/www/html/20564483.mp3');
?>
<?php// We'll be outputting a PDFheader('Content-Type: application/pdf');
// It will be called downloaded.pdfheader('Content-Disposition: attachment; filename="downloaded.pdf"');
// The PDF source is in original.pdfreadfile('original.pdf');?>
// It will be called downloaded.pdfheader('Content-Disposition: attachment; filename="downloaded.pdf"');
// The PDF source is in original.pdfreadfile('original.pdf');?>