header("Content Type: /image/jpeg");
$filename = "/usr/local/apache/htdocs/images/foo.jpg";$$fd = fopen ($filename, "r");
echo fread ($fd, filesize ($filename));
fclose ($fd);
not sure if that will work exactlly, but there are 1000s of examples in the forum... this is actually how you should do it on your site as well... AmIAGoodPhpCoderOrNot.com
🙂