header("Content-type: image/gif");
readfile($filename);
The above can only be used to show gif images.
Is there a header that can be used to show jpg/png/gif?
|
feedback
|
|
This should work for all image types:
| |||
|
feedback
|
OR
OR
| |||||||||||||||
feedback
|
|
You need to know or figure out what type of file it is, and send the proper type. There's no catch-all content type for images that'll work for GIF, PNG, and JPEG all at once.
| |||
|
feedback
|