On Jul 13, jason corbett said:
>Here is the part of the code that the error is pointing to
>
> print OUTFILE "$recordlist\n";
>$recordlist=join(",",@record);
It's not an error, it's a warning. And you didn't give us the *actual*
text of the warning. It looks to me like the problem is you're using the
variable before you've given it a value!
my $recordlist = join ",", @record;
print OUTFILE "$recordlist\n";
--
Jeff "japhy" Pinyan % How can we ever be the sold short or
RPI Acacia Brother #734 % the cheated, we who for every service
http://japhy.perlmonk.org/ % have long ago been overpaid?
http://www.perlmonks.org/ % -- Meister Eckhart
--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>