-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcard.php
24 lines (24 loc) · 1.07 KB
/
card.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php include_once("session.php");?>
<div class="h2"> <!--display all information associated with products passed by loop in products.php -->
<hr><hr>
<?= $row['title'] ?><br>(<?= $row['year_created']?>)
</div>
<div class="producttext" style="font-size: 15px;">
by <?= $row['name'] ?>
</br>
</div>
<img class="productimage" src="./images/<?= $row['source'] ?>" title="'<?= $row['title']?>'" alt="<?=$row['alt']?>" style="width: 100%; height: auto">
<div class="producttext">
<hr>
<?= $row['price'] ?> € <br>
</div>
<div>
<form action="cart.php" method="post"> <!--on click: add item to cart, go to cart -->
<input type="hidden" name="products_id" value="<?=$row['products_id'] ?>">
<input type="submit" name="add_to_cart" value="add to cart" class="smallbutton">
</form>
<form action="details.php" method="post"> <!--on click: open details.php for specified item -->
<input type="hidden" name="products_id" value="<?=$row['products_id'] ?>">
<input type="submit" name="show_details" value="details" class="smallbutton">
</form>
</div>