Is it possible to use multiple header types in one document? For example:
header(\"Content-type: image/jpeg\"); header(\'Content-Type: text/html; charset=utf
You can't. But what you can do is something like this in your HTML:
Of course my_img.php would be a PHP file that has a header("Content-type: image/jpeg"); line, and outputs your image.
my_img.php
header("Content-type: image/jpeg");