i assume php is 'showing' the requested files to the user, put these lines in the beginning of your code before any other output:
example file: filename.png
header("Content-Type: application/octet-stream");
header("Content-Disposition: attachment; filename=\"filename.png\"");
header ("Content-type: image/png");
change content type for your files
these lines do not work with many (all?) versions of Opera, and perhaps other browsers as well.
but they do work for IE.
oz