Hi Monks, I'm trying to use HTML::Template and CGI::Widget::Tabs to create a web page that displays results from one query on a Tab called "Football" for example, and then display the results of the other query called "Baseball" on it's own Tab.

I'm able to get a webpage with the data, but it's displayed on one page.

I substituted the baseball and football example in lieu of using actual business data

My pseudo code is as follows

#!/usr/bin/env perl use strict; use warnings; use DBI; use HTML::Template; use File::Basename; use POSIX 'strftime'; use CGI::Widget::Tabs; use CGI; my $basename = basename($0,".pl"); my $outfile="$ENV{'CAPS_OUTDIR'}/$basename.xls"; open (OUT_HTML_FILE, ">$ENV{'CAPS_OUTDIR'}/$basename.htm") or die "Can + not open output html file: $basename.htm\n"; ## output the content-type so the web server knows my $script="$ENV{'HOME'}/scripts/template.pl"; my $template = HTML::Template->new(filename => $script); $template->param(TITLE=>'ENV Spreadsheet'); my $dbname = 'xxxxx'; # $ENV{ORACLE_SID}; my $user = 'xxxxx'; my $passwd = 'xxxxx'; my $dbh = DBI->connect("dbi:Oracle:$dbname", $user, $passwd, {RaiseErr +or => 1}) or die "Oracle Connect Failed: ", DBI->errstr; my @reports = ('Football', 'Baseball'); my %queries = ( "Football" => qq{ select team as TEAM, url as URL from sports where sport = 'Football' }, "Baseball" => qq{ select team as TEAM, url as URL from sports where sport = 'Baseball' }, ); my $cgi = CGI->new; my $tab = CGI::Widget::Tabs->new; $tab->cgi_object($cgi); for (@reports) { my $sth = $dbh->prepare($queries{$_}); $sth->execute(); $tab->headings( qw/FOOTBALL BASEBALL/ ); $tab->wrap(3); # $tab->wrap(1); # |uncomment to see the effect of # $tab->indent(0); # |wrapping at 1 without indentation $tab->default("FOOTBALL"); $tab->display; my @headings; foreach (@{$sth->{NAME}}) { my %rowh; $rowh{HEADINGS} = $_; push @headings, \%rowh; } $template->param(HEADINGS=>\@headings); my @rows; while (my @data_row = $sth->fetchrow_array) { my %row; $row{TEAM} = $data_row[0]; $row{URL} = $data_row[1]; push @rows, \%row; } $template->param(ROWS=>\@rows); print OUT_HTML_FILE "Content-Type: text/html\n\n", $template->output; }

My Template is as follows

<html> <title><TMPL_VAR name=TITLE></title> <body> <table border="1"> <tr> <TMPL_LOOP NAME=HEADINGS> <th><TMPL_VAR NAME=HEADINGS></th> </TMPL_LOOP> </tr> <TMPL_LOOP NAME=ROWS> <tr> <td><TMPL_VAR NAME=TEAM></td> <td><A HREF="<TMPL_VAR NAME=URL>" target="_blank"><TMPL_VAR NA +ME=URL></A></td> </tr> </TMPL_LOOP> </table> </body> </html>

I cannot figure out how to get it so the data from each query is displayed on it's tab

I'm struggling with how to incorporate the template with the widget module

Any help would be greatly appreciated

Thank you


In reply to Help with CGI::WIDGET::TABS by dirtdog

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.