<?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
-
新加坡人口400万,亚洲人口4亿,全世界人口6亿。 但是,我一人可能就很有可能是世界最傻的了。我真是个不折不扣的大木头。真是受不了自己。
-
I recently wrote a code snippet to fill arrays with a value. The below method is a generic method that will accept different data types. Hop...
-
I was at Bugis Junction today and saw 蘇打綠 (Soda Green) performing. They look so much different especially the lead singer. I find their song...
-
Pledge to finish my 1st task after my 2 full days of rest by today. 03 March 2010 : CS4236 Project deadline It is basically a "waste-t...
-
Installed FortiClient recently but the challenge in disabling the application/service from running automatically on every start-up annoyed m...
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.