HI All
I have created a PHP page to upload and download various types of files.
The upload works fine, but when downloading the complete file never seems download.
Eg. I have an MP3 file which is about 2.5Mbytes in size. I can only ever download 1Kbytes.
I cannot download a JPEG it seems to show it within the browser window.
My code is:
if ($BROWSERAGENT == "IE") {
$Attachment = "";
} else {
$Attachment = "attachment;";
}
header("Content-type: application/force-download\n");
header("Content-Disposition: $Attachment filename=\"$TheFilename\"\n");
header("Content-Length: $TheFileSize\n");
$fn = fopen($UseFilename, "r");
fpassthru($fn);
exit;
HELP!!!!!!