Files
cs2440/catalog/cart.php
T
2025-05-01 14:37:08 -06:00

14 lines
273 B
PHP
Executable File

<?php
require_once 'functions/init.php';
if (!isset($_SESSION['id']))
header('Location: catalog.php');
// UI Components
foreach (glob('components/cart/*.php') as $file)
require_once $file;
require_once 'components/head.php';
require_once 'components/foot.php';