You could expand the script to scrape the
database and make many html pages linked
together as a static website but if you
need to interact:
#!/usr/bin/env perl
use Mojolicious::Lite;
use Data::Dumper; # or DBD::Oracle
get '/' => sub {
my $c = shift;
my $data = Dumper(\%ENV); # or your DB
$c->render(text => $data, format => 'txt');
};
app->start;