Revision: 16165
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at July 28, 2009 04:14 by hasantayyar
Initial Code
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');
Initial URL
Initial Description
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.
Initial Title
Force downloading of a file
Initial Tags
Initial Language
PHP