I have this code on php:
$query = "select * from product";
$result = mysql_query($query);
<?php
while($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td>" .$row['ProductName']. "</td>";
echo "<td>" .$row['Price']. "</td>";
echo "<td>" .$row['Stock']. "</td>";
echo "<td><img src=photos/'". $row['ProductImage']. "'/></td>";
echo "</tr>";
}
?>
But the images from the sql database won't be shown. It only appear like the image I attached.