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

11 lines
181 B
PHP

<?php
include "board.php";
include "config.php";
$db = new db($config);
$db->connect();
$html = new buildHTML($db);
echo $html->thread($_GET["q"]);
//print_r($db->getPost(11));
?>