Help for this page

Select Code to Download


  1. or download this
    my $rows;
    my $class = 'odd';
    ...
        $class = ( $class eq 'even' ? 'odd' : 'even');
    }
    $template->param(DATA => $rows);
    
  2. or download this
    <TMPL_LOOP NAME=DATA>
    <tr>
    <td class="<TMPL_VAR NAME="class">"> Row <TMPL_VAR NAME="name"></td>
    </tr>
    </TMPL_LOOP>
    
  3. or download this
    <tr>
    <td class="row_color_odd"> Row Odd1</td>
    ...
    <tr>
    <td class="row_color_even"> Row Even2</td>
    </tr>