Tadros has asked for the wisdom of the Perl Monks concerning the following question:
Here is the code:
while(<$filepath>)
{
print " $_"; # Executes successful
}
while (<$filepath2>) # Can not open the file for reading
{
print "$_";
}
what would possibly be wrong?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
(jeffa) Re: reading more than one file in a CGI Script.
by jeffa (Bishop) on Aug 28, 2000 at 21:57 UTC | |
|
Re: reading more than one file in a CGI Script.
by lhoward (Vicar) on Aug 28, 2000 at 21:43 UTC | |
|
Re: reading more than one file in a CGI Script.
by xdb19 (Sexton) on Aug 29, 2000 at 19:25 UTC |