I often use HTML::Table for this sort of thing. I think it's pretty easy to read and to maintain. Here's an example like yours:
use CGI ':standard'; use HTML::Table; # Create the "Days" sub-table my $table = HTML::Table->new; $table1->addRow('Days With Appointments'); $table1->addRow(scrolling_list( -NAME => "daysList", -VALUES => [keys %calendar], -SIZE => 5, -MULTIPLE => 0,)); $table1->addRow(submit({ -name => 'dateSelectionButton', -value => 'Display Appts'})); # Create the "Appointments" sub-table my $table2 = HTML::Table->new; $table2->addRow('Appointments'); $table2->addRow(scrolling_list( -NAME => "apptsList", -VALUES => \@apptTimeList, -SIZE => 5, -MULTIPLE => 0,)); # Create a table to act as a container for # the previous two sub-tables my $bigtable = HTML::Table->new; $bigtable->addRow($table1, $table2); print $bigtable;
buckaduck

In reply to Re: Interactive Form Creation/Maintenance by buckaduck
in thread Interactive Form Creation/Maintenance by Sherlock

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.