I created a form with pdf file attachment, Is there a way to display the pdf directly by not downloading the file? just a link or a button then it will open a new window and display the pdf file…
Your help is appreciated… thanks
Joey
I created a form with pdf file attachment, Is there a way to display the pdf directly by not downloading the file? just a link or a button then it will open a new window and display the pdf file…
Your help is appreciated… thanks
Joey
I haven’t tried this but maybe use .htaccess on the server?
If you have Apache add this to the .htaccess
file:
<FilesMatch "\.(?i:pdf)$">
ForceType application/octet-stream
Header set Content-Disposition attachment
</FilesMatch>