in reply to Can't open file using Perl as CGI
open (INFILE, '<', 'textfile.txt'); while (<INFILE>) { chomp; print "$_\n"; } close (INFILE);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Can't open file using Perl as CGI
by Anonymous Monk on May 20, 2008 at 09:14 UTC |