$path = '/mydocs/music/tbs.mp3';
$file = basename($path);
header('Content-Disposition: attachment; filename="' . $file . '"');
header('Content-type: audio/mpeg3');
header('Content-Length: ' . filesize($path));
readfile($path);
exit();
remember, there can no output sent to the browser prior to calling the header() function. read up on headers here.