This is my code and it works, but it only downloads like 20 sec. of the MP3 file. What is wrong?EDIT: FOUND ALTERNET CODE, PLEASE DON'T REPLYPHP Code:<?php
// force to download a file
$file = "http://localhost/test/".$_GET['file']."";
header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Content-Type: application/force-download");
header( "Content-Disposition: attachment; filename=".basename($file));
header( "Content-Description: File Transfer");
@readfile($file);
?>



Reply With Quote




Bookmarks