getglebbs2/catalog.php
2020-09-10 00:34:24 -04:00

10 lines
143 B
PHP

<?php
include "board.php";
include "config.php";
$db = new db($config);
$db->connect();
$html = new buildHTML($db);
echo $html->catalog();
?>