This code works in Opera, IE - it offers to save a file, for example, called foo.pl.
but in Netscape 7/Mozilla it tries to save as foo.pl.php.
from a file called download.php:
header ("Content-Type: application/force-download");
header ("Content-Disposition: attachment; filename=".$datafile[1]);
print $download_contents;
Anybody know of a solution?
Thanks.