Jump to content

force a download


PC Nerd

Recommended Posts

hi guys,

 

i know that when i place a .zip, or .exe in my web directory, the  browser automatically asled the user to download the file. however i want to place a PDF into my site, and only make it available as a download, becauase i know that especially with IE and Firefox, it reads it within the browser instead.

 

how can i have the file a download, instead of read?

 

thanks for your help in advance, yours, PC Nerd

Link to comment
https://forums.phpfreaks.com/topic/53530-force-a-download/
Share on other sites

Look here:

www.php.net/header

This example may help you:

<?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');
?>

Link to comment
https://forums.phpfreaks.com/topic/53530-force-a-download/#findComment-264545
Share on other sites

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.