Hello folks!
I've got a strange problem with my download-script in conjunction with
M$ internet explorer, if the filename I want to link to includes more
than one points. In Netscape the problem doesn't exist.
For example:
input: ... download.php?na me=virtualdub_1 .4.9.zip
output: ... save file to disk: virtualdub_1[1].4.9.zip
Plz hlp! Thx.
Kornelius F.
I've got a strange problem with my download-script in conjunction with
M$ internet explorer, if the filename I want to link to includes more
than one points. In Netscape the problem doesn't exist.
For example:
input: ... download.php?na me=virtualdub_1 .4.9.zip
Code:
header("Content-Type: application/octet-stream");
header("Content-Length: " . filesize($file));
header("Content-Disposition: attachment; filename=".$name);
header("Content-Transfer-Encoding: binary");
Plz hlp! Thx.
Kornelius F.
Comment