in reply to Re^2: Adding rows to column
in thread Adding rows to column

In the example there, $fh is the filehandle you want to read from.
You should open my $fh, '<', "somefile.txt" or die $!; somewhere earlier in the program.

PS: Simply saying that you added my $fh; doesn't help. You need to show the code, or the problem could be anything anywhere.

Replies are listed 'Best First'.
Re^4: Adding rows to column
by Anonymous Monk on Jul 14, 2009 at 20:21 UTC
    Thanks a Lot, it's working.