Say I have a MySQL database structured like this:
id name png
1 Bob img1
2 Jim img2
. . .
. . .
. . .
where the png column store images as the BLOB datatype.
What I would like to do is loop through the database and print out all of the contents in the "name" field on a page where each name link provides a link to the respective image. Any feedback would be most helpful.