Help for this page

Select Code to Download


  1. or download this
    my @loop;
    while (my @cols = $sth->fetchrow_array) {
        push @loop, { table_name => $cols[0] };
    }
    $tmp->param(loop => \@loop);