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 down
Sure, use a Content-disposition header
header('Content-Disposition: attachment; filename="filetodownload.jpg"');
if you wish to provide a default filename, but not automatic download, this seems to work.
header('Content-Disposition: filename="filetodownload.jpg"');