I use BLOBs to store images in my MYSQL database.
When I output the images to the browser I need a way to determine what the size of the BLOB is.
I.E
if ( $database->blob > 0KB ) {
Show picture in browser;
} else { Don't }
Any way to do this? Obviousely when the size is 0KB there is no image there so I dont what it to output to browser.
Thanx