I have images stored inside a blob and I want to display a few of them on one page. I have two problems, the first being how to display multiple images and the second being how would I display them in the middle of the page, instead of at the top, how header requires it to be.
I've attempted scripts similar to this, which don't work.
header("Content-type: image/jpg"){
print($img0);
print($img1);
print($img2);
}
The second problem having to do with where it gets printed.
print("Images<br />");
header("Content-type: image/jpg");
print($img0);

