|
If you replace all of the header() lines you used with the following ones, it works correctly in IE6 and Firefox.
header('Cache-Control: ');
header('Pragma: ');
header("Content-Type: application/force-download");
header("Content-length: " . (string)(filesize($path)));
header("Content-Disposition: attachment; filename=" . $path);
Test it yourself and see how it works out for you.
__________________
rRhino.com ...social networking for book fans...
|