Jump to content

download of a pdf file


dennismonsewicz

Recommended Posts

Linking directly to that file will do it. If they have adobe, it will display it. If not it prompts them to download it.

 

As far as doing this through php, no. As the page would have to send the headers so the browser knows what is happening.

 

EDIT:

You can create the link to the file with php/HTML however :)

If that was the case then your code is coded "wrong". You should not output anything before any header calls. To avoid this, I store all output into a string, instead of echoing/printing it. Then after all the processing I echo that string, this does safe processing time (1 echo vs many) and allows for you to use the header functions.

 

What you have done is more of a band-aid to the actual problem. Figured I would just let you know that. If you want help fixing the actual problem, post the code here and I would be glad to guide you through fixing it to output properly.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.