Your cart is empty!

Check out our innovative and reliable products here.

'; } else { if (isset($_POST['form_id'])) { $total = calculate_total(); $items = []; foreach ($_SESSION['cart'] as $id => $q) { $items[fetch_product($id)['name']] = $q; unset($_SESSION['cart'][$id]); } echo cart_confirmation($_POST['fname'], $_POST['lname'], $_POST['add'], $_POST['city'], $_POST['state'], $_POST['zip'], $total, $items); } else echo cart_layout(); } require_once 'components/foot.php';