diff options
Diffstat (limited to 'public/products.php')
-rw-r--r-- | public/products.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/public/products.php b/public/products.php index e9c7cdf..bffaeb0 100644 --- a/public/products.php +++ b/public/products.php @@ -2,9 +2,10 @@ <?php require "db.php"; ?> <?php function product_template($product) { + $image_path = $product->img ? "/img/product/$product->id-thumb.jpg" : "/img/placeholder.png"; echo <<<"EOF" <a href="/product.php?id=$product->id" class="product nolinkstyle"> - <img src="$product->img" alt=""> + <img src="$image_path" alt=""> <span class="price">$product->price</span> <span class="name">$product->name</span> </a> @@ -23,7 +24,7 @@ EOF; <h2>lijst met producten:</h2> <div class="products"> <?php - $res = $cursor->query("select ID as id, image_path as img, price, name from webs.product"); + $res = $cursor->query("select ID as id, image as img, price, name from webs.product"); while ($product = $res->fetch_object()) product_template($product); ?> </div> |