php pdf

Solutions on MaxInterview for php pdf by the best coders in the world

showing results for - "php pdf"
Giuseppe
30 Nov 2017
1
2<?php
3// We'll be outputting a PDF
4header('Content-Type: application/pdf');
5
6// It will be called downloaded.pdf
7header('Content-Disposition: attachment; filename="downloaded.pdf"');
8
9// The PDF source is in original.pdf
10readfile('original.pdf');
11?>
12
13