right now I can download or view a pdf which is great, BUT when I try to dl the file, the name changes to download.pdf, can someone please check my code at the bottom for any errors.
Thanks in advance Scotty
In the Main page I put this:
<A HREF=./download.html>Download selected PDF</A>
In the Download.html I put this
<?PHP
$filename = \"XXX.pdf\";
$filesize = filesize($filename);
if($filesize)
{
Header(\"Content-Type: application/pdf\");
Header(\"Content-Length: \".$filesize);
Header(\"Content-Disposition: attachment: filename=\".$filename);
@readfile($filename);
}
?>