Downloading a file with a different name to the stored name

Viewed 53669

Is it possible to let your user download a file with a different name?

For example, there is a file called "4324ffsd34.jpg". I want people to download it via download.php, with a different name (like "filetodownload.jpg"), without renaming the original file.

5 Answers
<a href="4324ffsd34.jpg" download="filetodownload">Download</a>
Related