Note Submitter: tivadar dot at freemail dot hu
----
Hi!
I have a problem with php download scripts.
for example:
$file = 'pro.ba.zip';
header('Content-Description: File Transfer');
header('Content-Type: application/force-download');
header('Content-Length: ' . filesize($file));
header('Content-Disposition: attachment; filename=' .
basename($file));
readfile($file);
unfortunately there will be a plus "[1]" in the
filename under IE6...so the filename will be pro[1].ba.zip.
with opera it works fine..
how can i resolve the problem??
THX
TIV
--
PHP Notes Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub
.php
|