I have a question about inserting images into a product page. I have 5 images (saved as longblobs in my products table) and would like to put them in my table like the id, name, quantity and price.... any idea of how i would do this?
I have this so far. When i run page the id, title, price and availability all work as does the add to cart href part. its just the image i am stuck on
<tr>
<td><?php echo $row['product_id'] ?></td>
<td><?php echo $row['product_title'] ?></td>
<td><?php echo $row['product_price'] ?></td>
<td><?php echo $row['product_availability'] ?></td>
<td><?php echo $row['product_image'] height="150" width="150" ?></td>
<td> </td>
<td><a href="index2.php?page=productDetails&action=add&id=<?php echo $row['product_id']?>">ADD TO CART</a></td>
</tr>