I have done a search for this and have had no luck getting it to work. I would like to force a jpeg to download instead of showing up in a the browser. I know this can be done because I have seen sites that do it.
All the information I found says it depends on the header. something like:
header("Content-Type: application/save");
header("Content-Disposition: attachment; filename=$shortname");
// $shortname being the image file name
doesn't work, it still loads the image in the browser.
Any ideas on how to go about doing this?
Thanks for your time