How to make PDF file downloadable in HTML link using PHP ?
To Download PDF from HTML link using PHP with the help of header() function in php. The header()function is used to send a raw HTTP header. Sometimes it wants the user to be prompted to save the data such as generated PDF.
Syntax:
.
Note: Remember that HTTP header() must be called before any actual output is sent, either by normal HTML tags, blank lines in a file or from PHP.
Example 1: Save below HTML file as htmllinkpdf.html and save PHP file as downloadpdf.php
- Below example to illustrate concept of downloading PDF file using HTML link.
- Here downloading file appears to be PDF format but without any content which shows error on opening in any application
- HTML code:filter_none
edit
closeplay_arrow
link
brightness_4
code - PHP code:filter_none
edit
closeplay_arrow
link
brightness_4
code - Output:
Below example illustrates the concept of downloading PDF file locally (i.e. read gfgpdf.pdf file from local ) using HTML link.
Example 2: Save HTML file as htmllinkpdf.html and save PHP file as downloadpdf.php
- HTML code:filter_none
edit
closeplay_arrow
link
brightness_4
code - PHP code:filter_none
edit
closeplay_arrow
link
brightness_4
code - Output:
If you like GeeksforGeeks and would like to contribute, you can also write an article using contribute.geeksforgeeks.org or mail your article to contribute@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Please Improve this article if you find anything incorrect by clicking on the "Improve Article" button below.
Understand: Download pdf using view page source
Starfinder pdf downloads | 296 |
Download the battle of polytopia on a pc | 428 |
Download mortal kombat 2 windows 10 | 262 |
Can you download windows precision drivers on a chromebook | 206 |
Fortnite online no downloads pc | 589 |

-
-