domingo, 26 de marzo de 2017

forcing file download mp3 and pdf

<?php


// 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');?>

No hay comentarios:

Publicar un comentario