Answer the question
In order to leave comments, you need to log in
Answer the question
In order to leave comments, you need to log in
header('Content-Type: application/octet-stream'); // или какой там у вас mime-type
header('Content-Transfer-Encoding: Binary'); // или текст?
header('Content-disposition: attachment; filename="file.exe"');
header("Content-Type: audio/mpeg");
header('Content-Length: ' . filesize($track));
header('Content-Disposition: attachment; filename="test.mp3"');
$str = "/home/user/gets/".$track;
readfile($str);
exit;
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question