12-03-2007, 03:08 PM
|
#2 (permalink)
|
|
La Vida es Sueño
Join Date: Sep 2007
Location: Oldham
Posts: 2,267
Thanks: 90
|
You'll have to set the header in your PHP document so that once you've acquired the PDF, it can be treated like a PDF. So before you echo out the PDF's content, add:
php Code:
header('Content-Type: application/pdf');
In fact, remove the above line from the PDF side of things, and move it across to the PHP side where you're using cURL.
__________________
The man who comes back through the Door in the Wall will never be quite the same as the man who went out.
|
|
|