[Templates] Perl to TT question

[prev] [thread] [next] [Date index for 2004/10/19]

From: Robert
Subject: [Templates] Perl to TT question
Date: 16:45 on 19 Oct 2004
I have a Perl routine which does this:

my $count = 0;

while($sth->fetchrow_arrayref) {
    if ($count % 2) {
        print "something";
    }
    else {
        print "something else";
    }
    $count++;
}

Is this the equivalent?

[% count = 0;
    WHILE ($sth->fetchrow_arrayref) %]
        [% IF ($count % 2) %]
            print "something";
        [% ELSE %]
            print "something else";
        [% END %]
    count++;
[% END %]

Just trying to wrap my head around converting it to TT format.

Robert




_______________________________________________
templates mailing list
templates@xxxxxxxxxxxxxxxx.xxx
http://lists.template-toolkit.org/mailman/listinfo/templates

[Templates] Perl to TT question
Robert 16:45 on 19 Oct 2004

Re: [Templates] Perl to TT question
lio 10:37 on 28 Oct 2004

Re: [Templates] Perl to TT question
Andy Lester 12:16 on 28 Oct 2004

Re: [Templates] Perl to TT question
Stephen Quinney 12:37 on 28 Oct 2004

Generated at 08:55 on 15 Mar 2005 by mariachi v0.52