Is there a way to make an image a download once you click on it (without right-click save image as)?
I\'m using a small Javascript function to call the do
Try to change this:
header("Content-disposition: attachment; filename= ".$file."");
To:
header("Content-disposition: attachment; filename= ".$file);
If the above doesn't work to you, here a function to force a file to be downloadable: