Advertisement
Guest User

Untitled

a guest
Nov 25th, 2014
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.35 KB | None | 0 0
  1. while ($stmt->fetch()) {
  2.  
  3.     $id=urlencode($id);
  4.  
  5.     echo "<div class='product'>";
  6.     echo "<ul>";
  7.     echo "<li> <img src='" . $image. "'</li>";
  8.     echo "<li class='name'> <strong>" . $name . " </strong> </li>";
  9.     echo "<li> &pound;" . $price . "</li>";
  10.     echo "<li> <a href='cartControl.php?ID=" . $id. "&action=add'> Add to cart </a> </li>";
  11.     echo "</div>";
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement