Help for this page

Select Code to Download


  1. or download this
    <table>
    <row>
    ...
    <cell>Group 2 name
    <cell>Email  5, Email 6, Email 7...
    </table>
    
  2. or download this
    print <<EOTableHeaders;
    <table border="1" cellpadding="3" cellspacing="4">
    ...
    }
        </tr>
    </table>
    
  3. or download this
    for (my $i = 0; $i < (scalar(@{$all_groups}) - 1); $i++) {
    
    ...
        print "\tEmail: " $all_groups->[$i][2] . "\n";
    
    }