<?php $strPhyFileName = "FILE PATH HERE!!!"; $strSaveAs = "FILE NAME TO SAVE AS"; $size = filesize($strPhyFileName); header("Content-Type: application/download"); header("Content-Length: $size"); header("Content-Disposition: attachment; filename=".$strSaveAs); header("Content-Transfer-Encoding: binary"); $fh = fopen($strPhyFileName, "r"); fpassthru($fh); ?>
Computer, Technology, Databases, Google, Internet, Mobile, Linux, Microsoft, Open Source, Security, Social Media, Web Development, Business, Finance
Tuesday, July 08, 2008
Force Save As Download On a File in PHP
Subscribe to:
Post Comments (Atom)
Popular Posts
-
Google url shortener service, goo.gl , is now much improved with newly included features like easier copy and paste, and ability to delete e...
-
I would like to apologize that sigining of my guestbook is not possible at the moment due to an unexpected bug. There is already 74 entries ...
-
Get accurate and real-time bus arrival information for public bus operators in Singapore, including SBS Transit, SMRT Buses, Go-Ahead Singap...
-
Installed FortiClient recently but the challenge in disabling the application/service from running automatically on every start-up annoyed m...
-
*********** Try to sleep now, close your eyes Soon the birds would stop singing Twinkling stars, are shining bright They'll be watch...
I recommend Google Code Prettify for you to embed any highlighted code into your blog.
ReplyDeleteThanks dude.
ReplyDeleteHaving the intention to use google's since months back but then never attempt to change.