Files
website/includes/chat_reading_contr.inc.php
2026-02-03 19:37:38 -03:00

16 lines
284 B
PHP

<?php
declare(strict_types=1);
function get_chat_history(object $pdo) {
$chat_history = retrieve_chat_history($pdo);
return $chat_history;
}
function display_history(array $chat_history) {
render_history($chat_history);
}
function print_errors(){
check_errors();
}