PHP

Force Downloading a file



Forces a user to download a file, for e.g you have an image but you want the user to download it instead of displaying it in his browser.

header(“Content-type: application/octet-stream”);

// displays progress bar when downloading (credits to Felix ;-) )
header(“Content-Length: ” . filesize(‘myImage.jpg’));

// file name of download file
header(‘Content-Disposition: attachment; filename=”myImage.jpg”‘);

// reads the file on the server
readfile(‘myImage.jpg’);

No related posts.

Thanks for reading my blog. If you like what I write, why not subscribe to my feed?

If you are busy, I can send the latest post to your email. Just subscribe to my email updates.

 

Enter your email address:

Delivered by FeedBurner

Discussion

No comments for “Force Downloading a file”

Post a comment