header("Content-length: $size_kb");
header("Content-type: $filetype");
header("Content-Disposition: attachment; filename=$name");
$data = fread(fopen($CONFIG['fileLocation'] . "$upload_time/$id.$extension", 'r'), $size_kb);
echo $data;
I get the download prompt to come up but it errors out then? Has anyone found any IE hacks.
PS Works PERFECT in firefox. (.5% of browser market)