Posts by Jean Lucas Lima • 1 point
1 post
-
0
votes4
answers2060
viewsA: How to create a PDF stream in PHP?
Adapting this answer: Suppose you want to stream the link "http://bar.com/foo.pdf" $data = file_get_contents("http://bar.com/foo.pdf"); header("Content-type: application/octet-stream");…