Here is my php download mp3 script
and it opens my file ant it starts to download but it don't show how much time left hot to fix it?
Code:
header("Pragma: public"); header("Expires: 0"); header("Cache-Control: must-revalidate, post-check=0, pre-check=0");header("Cache-Control: public"); header("Content-Description: File Transfer"); header("Content-Type: audio/mpeg"); header("Content-Disposition: attachment; filename = " . $file_name . ";"); header("Content-Transfer-Encoding: binary"); header("Content-Length: " . filesize($file)); @readfile($file);
Comment