Hi all.
I have a php-script to download pdf files from another location:
<?php
header ('Content-Type: "application/pdf" ');
readfile("/dir/file.pdf");
?>
This works fine, but when I want to save it via NS or IE it gives the name of the php file, eg. download_pdf.php3
Is there any way of changing this to the filename of the pdf file?
thank you,
Daniel