Add descriptions

Add descriptions
This commit is contained in:
Nikiroy78 2023-03-08 01:12:16 +03:00 committed by GitHub
parent 5fc1bd155a
commit aa8b071b3a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,7 +8,6 @@ function getRequestHistory () {
$results = $db->query('SELECT date, hash, text FROM history;');
$list = array();
while ($row = $results->fetchArray()) {
// var_dump($row);
$list[] = '['. $row['date'] .']: ('. $row['hash'] .'): '. $row['text'];
}