Help for this page

Select Code to Download


  1. or download this
    for(@LS) { #go through @LS 1 by 1, putting array ref into $_
      print "<TD>$el @{$_}</TD>"; #print each line converting arrayref int
    +o array for printing
      ## or you could do
      print "<TD>$_->[1]</TD>";# to print just the team name... etc 
    }
    
  2. or download this
    my @line = split('\|',$_);
    print "<TR><TD COLSPAN=10>Team: $_->[1] Score: $_->[0]</TD></TR>";
    ...
      print "<TD>$_->[$1]</TD>";
    }
    print "</TR>";