BigJoe has asked for the wisdom of the Perl Monks concerning the following question:
#!/usr/bin/perl use CGI; $q = new CGI; open(INFILE, "<top.html"); $filesize = -s INFILE; read(INFILE, $wholepage, $filesize); close(INFILE); $wholepage =~s/<M//; print $q->header(-target=>'Top'); print $q->p($wholepage);
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: CGI.pm help with IE browser
by wonko (Pilgrim) on Jun 14, 2000 at 11:26 UTC | |
|
Re: CGI.pm help with IE browser
by Michalis (Pilgrim) on Jun 14, 2000 at 12:56 UTC |