How to Insert Image

Submitted by gbraijin13 on
Anybody can help me....
  1.   <?php
  2. include("connection.php");
  3. $qry=mysql_query("SELECT * FROM men");
  4. ?>
  5. <form method="GET" action="order_summary.php">
  6. </p>
  7. <p>&nbsp;</p>
  8. <p>&nbsp;</p>
  9. <p>&nbsp;</p>
  10. <?php
  11. echo "WELCOME:" . $_SESSION['user'];
  12. ?>
  13. <table border="1" cellpadding="2" cellspacing="2">
  14. <tr>
  15. <th><span class="style15">idproduct</span></th>
  16. <th><span class="style15">product</span></th>
  17. <th><span class="style15">price</span></th>
  18. <th><span class="style16"><span class="style8">image</span></span></th>
  19. </tr>
  20. <?php
  21. while($fetch=mysql_fetch_array($qry)){
  22. //$conca=$fetch['Book_No']+$fetch['Book'];
  23. echo "<tr><td>".$fetch['idproduct']."</td><td><input type='checkbox' name='order[]' value='".$fetch['price']."'/>".$fetch['product']."</td><td>".$fetch['price']."</td><td>".$fetch['image']."</td></tr>";
  24. }
  25. ?>
  26. </table>
  27. <table>
  28. <tr align="center">
  29. <td>  <input type="submit" name="Ord" value="Order"/></td>
  30. <td>  <input type="reset" name="cleared" value="Clear"/></td>
  31. </table>
About that code, I want to insert image what should i do for that code. Please help me guys!