<?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
-
Robocopy, short for "Robust File Copy" is an advanced command-line utility included in Windows. It's designed to copy files an...
-
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 ...
-
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...
-
Singapore’s Land Transport Authority has just released an updated official MRT map including seven new stations on the Thomson-East Coast Li...
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.