Include code of Chapter-1-Try-Items Name: Juan Montalvo Class: Introduction to PHP
https://github.com/mijuanmontalvo/Juan_Montalvo-Chapter-1-Try-Items/blob/main/README.md
'Chocolate', // Item on offer 'qty' => 5, // Quantity to buy 'price' => 5, // Usual price per pack 'discount' => 4, // Offer price per pack ]; $usual_price = $offer['qty'] * $offer['price']; // Usual total price $offer_price = $offer['qty'] * $offer['discount']; // Offer total price $saving = $usual_price - $offer_price; // Total saving ?> <title>The Candy Store</title><h2>Multi-buy Offer</h2>
<p><?= $greeting ?></p>
<p class="sticker">Save $<?= $saving ?></p>
<p>Buy <?= $offer['qty'] ?> packs of <?= $offer['item'] ?>
for $<?= $offer_price ?><br> (usual price $<?= $usual_price ?>)</p>