sir i use php with mysql that have blob filed
i save the image in that field
see my code
<?php
mysql_connect("localhost", "root", "") or die(mysql_error());
mysql_select_db("cdcol") or die(mysql_error());
global $result;
$result = mysql_query("SELECT * FROM cds") or die(mysql_error());
echo "<table border='1'>
<tr>
<th>First Name</th>
<th>Last Name</th>
</tr>";
while($row = mysql_fetch_array( $result ))
{
echo "<tr>";
echo "<td>" . $row['titel'] . "</td>";
echo "<td>" . $row['jahr'] . "</td>";
echo "<td>" . $row['phh'] . "</td>";
echo "</tr>";
}
echo "</table>";
?>
but sri when i show image in page the php give me error
please give me idea how i show my image in page