<?php
$file=fopen('d:\\audio.mp3','r') or exit('nuk e hap dot skedarin');
header('Content-Type:audio/mp3');
header("Content-Disposition: attachment; filename=mp.mp3;" );
while(!feof($file))
{
$char=fgetc($file);
echo $char;
}
fclose($file);
?>