malaga has asked for the wisdom of the Perl Monks concerning the following question:
thanks.my @row = split(/\t/); if ($row[11] ne undef) { my %data; @data{@fields} = @row; push @records, \%data; } } close (FILE); foreach my $ref ( @records ) { print "<a href = \"http://sph.berkeley.edu/cgi-bin/passtestfac.cgi +\?name\=$ref->{'ID'}\">", @{$ref}{qw/LastName/}, ',', ' ', @{$ref}{qw +/FirstName/}, "</a>", "<br>"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: sort
by I0 (Priest) on Feb 08, 2001 at 06:31 UTC | |
by merlyn (Sage) on Feb 08, 2001 at 06:35 UTC | |
|
Re: sort
by malaga (Pilgrim) on Feb 08, 2001 at 06:56 UTC |