diff options
Diffstat (limited to 'public/product.php')
-rw-r--r-- | public/product.php | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/public/product.php b/public/product.php index 70c511d..18cc936 100644 --- a/public/product.php +++ b/public/product.php @@ -38,8 +38,9 @@ $product = $res->fetch_object(); <span class="price"><?php echo $product->price ?></span> <p class="info"><?php echo $product->description ?></p> <form action="/cart.php" method="post"> - <input type="number" value="<?php echo $product->id ?>" hidden name="product_id"> - <input type="submit" value="Toevoegen aan winkelwagen" class="button filled"> + <input type="hidden" name="type" value="add"> + <input type="hidden" name="product_id" value="<?php echo $product->id ?>"> + <input type="submit" class="button filled" value="Toevoegen aan winkelwagen"> </form> </div> </div> |