View Single Post
Old 12-03-2007, 03:08 PM   #2 (permalink)
Wildhoney
La Vida es Sueño
Advanced Programmer Top Contributor 
 
Wildhoney's Avatar
 
Join Date: Sep 2007
Location: Oldham
Posts: 2,267
Thanks: 90
Wildhoney is on a distinguished road
Default

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.
Send a message via AIM to Wildhoney Send a message via MSN to Wildhoney Send a message via Yahoo to Wildhoney
Wildhoney is offline  
Reply With Quote
The Following User Says Thank You to Wildhoney For This Useful Post:
bdm (12-03-2007)