Download button - to download a PDF file

This is a discussion on "Download button - to download a PDF file" within the Web Page Design section. This forum, and the thread "Download button - to download a PDF file are both part of the Design Your Website category.



Go Back   Webforumz.com > Main Forums > Design Your Website > Web Page Design

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Dec 9th, 2007, 14:20
New Member
Join Date: Dec 2007
Location: France
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
Download button - to download a PDF file

Hello,

I need to offer some pdf download options on my site.
Pointing to the .pdf file only opens it.

I would like a "download" button with the options where to download the file instead of opening it.
Is there a HTML code for that?
Can anyone help?

Thanks

Attila
Reply With Quote

  #2 (permalink)  
Old Dec 9th, 2007, 14:30
alexgeek's Avatar
Technical Administrator

SuperMember
Join Date: Jul 2007
Location: Webforumz 24/7
Age: 15
Posts: 3,790
Blog Entries: 9
Thanks: 0
Thanked 2 Times in 2 Posts
Re: Download button - to download a PDF file

You have to options.
1. Tell users to right click the link and click save as.
2. Use PHP headers to give a download prompt.

The first would be easier, but the second is more professional.

Does your server support PHP?
Last Blog Entry: 3D Chess in your browser! (Mar 14th, 2008)
Reply With Quote
  #3 (permalink)  
Old Dec 9th, 2007, 15:07
New Member
Join Date: Dec 2007
Location: France
Posts: 9
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Download button - to download a PDF file

Thanks!

I would prefer the professional option...
However:
My server does support PHP... but I dont... I mean, I never used it.

If there is a simple code I can insert on the pages what I would like to direct the visitor back, that would be great !

I guess the page name needs to be stored somehow, and to be able to call back later...


But... how?
Reply With Quote
  #4 (permalink)  
Old Dec 9th, 2007, 16:09
alexgeek's Avatar
Technical Administrator

SuperMember
Join Date: Jul 2007
Location: Webforumz 24/7
Age: 15
Posts: 3,790
Blog Entries: 9
Thanks: 0
Thanked 2 Times in 2 Posts
Re: Download button - to download a PDF file

Very simple, in fact it's the example on the PHP manual.
Save the following as download.php
PHP: Select all

  <?php
// We'll be outputting a PDF
header('Content-type: application/pdf');

// It will be called downloaded.pdf
header('Content-Disposition: attachment; filename="downloaded.pdf"');

// The PDF source is in original.pdf
readfile('original.pdf');
?>
Change original.pdf to the filename of the PDF you want to offer.
You can also change download.pdf in the following to the name you want the user to download the file as: filename="downloaded.pdf"
and then use the following to offer a download:
HTML: Select all
<a href="download.php">Download the PDF</a>
Last Blog Entry: 3D Chess in your browser! (Mar 14th, 2008)
Reply With Quote
  #5 (permalink)  
Old Aug 15th, 2008, 11:44
Junior Member
Join Date: Jan 2008
Location: scotland
Posts: 10
Thanks: 0
Thanked 0 Times in 0 Posts
Re: Download button - to download a PDF file

Hello, just came across this thread and I think it's the code I need...
Am trying to do the same thing with an mp3...
Could anyone confirm I am doing this right? So far I have made a file called download.php that looks like this:


<?php
// We'll be outputting an mp3
header('Content-type: application/mp3');

// It will be called shoveit.mp3
header('Content-Disposition: attachment; filename="shoveit.mp3"');

// The PDF source is in shoveit.mp3
readfile('http://www.smiledownuponus.org/audio/shoveit.mp3');
?>

and then I made an image map link on the page looking like this:

<area alt="download" href="http://www.smiledownuponus.org/download.php" shape="rect" coords="228, 416, 383, 446">

Seems not to work - when you click on it, it just says I am trying to access a forbidden document.

HELP! Ta...
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads
Thread Thread Starter Forum Replies Last Post
Allow users to download flv file @lun Flash & Multimedia Forum 4 Jan 29th, 2008 17:33
file download help acrikey Web Page Design 7 Aug 23rd, 2007 00:11
Download button sabatier PHP Forum 2 Aug 13th, 2007 14:30
File Download nileshnaik JavaScript Forum 1 Nov 27th, 2006 16:13
Text file download harlekin Classic ASP 2 Dec 5th, 2005 18:23


All times are GMT. The time now is 13:26.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43