For the archives, for when someone else runs into this.  The following
headers solved the issue where IE would only save an image as a BMP,
when the image was, in fact, a JPG:

header("Pragma: public");
header("Expires: 0");
header("Cache-Control: must-revalidate, post-check=0, pre-check=0");
header("Content-Type: image/jpeg");
header("Content-length: ".(string)filesize($fullpicturename));
header("Content-Disposition: inline; filename=\"".$row["name"]."\"");
header("Content-Transfer-Encoding: binary");

My thanks to Larry Brown for his assistance.  It seems that Justin
French isn't the only freaking genius on this list!

Bob

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to