query("SHOW TABLES LIKE 'page_views'"); if ($table_check->rowCount() > 0) { $ip_address = $_SERVER['REMOTE_ADDR']; $page_url = $_SERVER['REQUEST_URI']; $stmt = $pdo->prepare("INSERT INTO page_views (page_url, ip_address) VALUES (?, ?)"); $stmt->execute([$page_url, $ip_address]); } } catch (PDOException $e) { // Silently fail or log to a file to not break the page for users error_log("Could not log page view: " . $e->getMessage()); } } $cart_item_count = isset($_SESSION['cart']) ? array_sum(array_column($_SESSION['cart'], 'quantity')) : 0; $page_title = $page_title ?? 'فروشگاه آتیمه'; // Default title ?> <?php echo htmlspecialchars($page_title); ?>