here's a basic way to control the separator that works, but can't really apply in my case. Does anyone know if there's any possible way to create separators from a single array?
etc :
@arrayResult = qw(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15);
then somewhere inside the loop, seperate @arrayResult after each 5th element and finally put into template.

test1.pl :

my $template = HTML::Template->new(filename => 'test1.html'); my @array1 = qw(1 2 3 4 5); my @array2 = qw(10 11 12 13 14 15); my @outer; for my $o (@array1){ my @inner; for my $i (@array2){ push(@inner, {INNERTEXT=>$i}); } push(@outer, { INNER=> \@inner, TITLE=> "test drive" }); } $template->param(OUTER => \@outer); print $template->output();


test1.html

<html> <body> <table style="border:solid 1px black;"> <TMPL_LOOP NAME=OUTER> <tr> <td> <TMPL_VAR NAME=TITLE> </td> <TMPL_LOOP NAME=INNER> <td> <TMPL_VAR NAME=INNERTEXT> </td> </TMPL_LOOP> <td>-break </td> </tr> </TMPL_LOOP> </table> </body> <body>

In reply to Re: html::template loop seperator? by adrive
in thread html::template loop seperator? by adrive

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.