Files
cs2440/catalog/catalog.php
T
jashton 3f844e4e06
Deploy CSIS 2440 / deploy (push) Canceled after 0s
finished final project
2025-05-05 21:53:39 -06:00

18 lines
398 B
PHP
Executable File

<?php
include_once 'functions/init.php';
include_once 'functions/catalog.php';
// UI Components
foreach (glob('components/products/*.php') as $file)
require_once $file;
include_once 'components/head.php';
echo '<h1 class="margin-left">Catalog</h1>';
echo '<div id="catalog" class="std_width center">';
echo catalog_grid(fetch_catalog());
echo '</div>';
include_once 'components/foot.php';