need your help. I am able to upload image to database on a blob field. Now the question is I am not able to display it back, it just puts out a box with out the real image, what is that I am missing. Here is the code. images is the field that is declared as blob;
$statement->bind_result($notes, $images, $image_type);
$statement->fetch();
echo $images;
echo '<img rc="data:image/jpeg;base64,'.base64_encode($images).'"/>';