Skip to main content

Posts

Showing posts from September, 2014

Download file script in PHP

Some times we  need to create a download link of any file in our site. We can point a direct link of the file to download but in this case we can get the absolute path of that file which is not preferred to us. Moreover some browsers redirect the download link path in a new window. Hence we can create a separate PHP script through which we can download any file and there will be no possibility to access the absolute path of the file and no redirection to the other page. We can get the save file pop window in the same window. Step 1: Create a PHP file named download.php and put the following codes in it. Step 2: Now wherever you want to put the download file link, put the following code: <a href="download.php?filename=yourfilename.zip">Click here to Download the File</a> https://gist.github.com/sanjaybhowmick/dde52a541c696b58b52c#file-download-php