in reply to Re: Re: errors revisited
in thread errors revisited
Note that there was still an error that was caught by the warnings/diagnostics: on line 93, there is a reference to $a, but nothing sets it. You probably want:
foreach my $a (@filenames) { print "$a <p>Name:$_</p>"; } print "<hr />";
|
---|