When I save an image into the database, the image field has the following information in the field:
<Binary Data>
But when I read the image from the database I get a "X" or a number like "4172726179" and the image is not displayed.
I'm using this code for displaying the image:
<?php
...
print "<img src='" . $row["image"] . "' alt='test' width='128' height='128' />"
...
?>
How can I display the image in the database?
My thanks in advanced