How can I download pdf file by clicking button ?
Hello team, I want to ask you about how can I download PDF file like this screen. btw Im using PHP.
on the button 'Download Here'
here's the code :
<button name="Save_as_pdf" onclick="savePdf()">
Download Here
</button>
- javascript -
function savePdf(){
cl_image_tag("qpr2ddsqxyw0foujcttw.pdf", array("flags" => "attachment"));
}
Thanks in advance.
1
-
Hi,
You can try do something like:
<div onClick="window.location=pdf.php">something</div>pdf.php:
<?php header('Content-disposition: attachment; filename=cl_image_tag("qpr2ddsqxyw0foujcttw.pdf"'); header('Content-type: application/pdf'); readfile('path/to/your_file.pdf');
Or you can do something like:
<a href="https://res.cloudinary.com/demo/image/upload/fl_attachment/multi_page_pdf_1.pdf">Test</a>
0 -
Thx Shirly,
Its solved, Thanks you for your help.0
Post is closed for comments.
Comments
2 comments