This is my php code
<?php
$query = mysql_query("SELECT Name,Price FROM info",$con1);
echo "<table border='1'>
<tr>
<th>Food Name</th>
<th>Price</th>
</tr>";
while($row = mysql_fetch_assoc($query))
{
echo "<tr>
<td> $row[Name] </td>
<td> $row[Price]</td>
<td> '<img src=data:image/jpeg;base64,'.base64_encode( $row[image] ).' width=200 height=200/>' </td>
</tr>";
}
?>
hmm i think i fix it.Nw the problem is the picture does not show in the page.Instead it show full page of alien word instead of picture why?