function tables_title()
{
    $q = new mysql_storelogs();
    $array = $q->COUNT_ALL_TABLES();
    if (!$q->ok) {
        if ($q->mysql_error == null) {
            $q->mysql_error = "MySQL error...";
        }
        $ff = "<div style='font-size:18px'>{$q->mysql_error}</div>";
    } else {
        $ff = "<div style='font-size:18px;margin-bottom:10px'>{$array[0]} Tables (" . FormatBytes($array[1] / 1024) . ")</div>";
    }
    echo "\n\t<div style='float:right'>" . imgtootltip("refresh-24.png", "{refresh}", "RefreshTableTitle{$_GET["t"]}()") . "</div>\n\t{$ff}";
}