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.
Thank you for publishing this for free. It works like a charm, and I am no programmer.
this works fine!!!!!
very simple
:/ Needs updating for PHP 5
“Function eregi() is deprecated”
Use “preg_match” function instead. Check if this works or not.
if (preg_match(“..”,$filename)) die(“I’m sorry, you may not download that file.”);
That works perfectly now. Thank you Sanjay 🙂