> >> thumb.php
> >> <?php
> >> header("Content-type: image/jpg");
> >> $file = "data/original/filename.jpg";
> >> readfile($file);
> >> ?>
Change
header("Content-type: image/jpg");
to
header("Content-type: image/jpeg");
Apparently IE doesn't like image/jpg [1].
[1] http://pear.php.net/bugs/bug.php?id=4586
Edward
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

