if ($onoma eq 'showlog') { $st = $db->prepare( 'SELECT * FROM logger' ); $st->execute(); while ( $row = $st->fetchrow_hashref ) { print font( {-size=>4, -color=>'Lime'}, $row->{host}, " "x(40-length($row->{$host})) ); print font( {-size=>4, -color=>'Cyan'}, "-> ", $row->{xronos} ); print font( {-size=>4, -color=>'Yellow'}, " -> ", $row->{game} ); print br(); } exit 0; }