yogiwhere/public/frontend2/include/get_cart_count.php

5 lines
143 B
PHP

<?php
session_start();
$cart_count = isset($_SESSION['cart']) ? count($_SESSION['cart']) : 0;
echo json_encode(['cart_count' => $cart_count]);