in reply to (jeffa) Re: print file in cgi with perl
in thread print file in cgi with perl
#!C:/server/Perl/bin/perl.exe use CGI qw(:standard); use XML::Checker::Parser; use strict; use warnings; my $checker = new XML::Checker; open(INPUT, "dtdversao3.dtd") or die "$!"; my @array=<INPUT>; close(INPUT); my $i=0; print header; print start_html('A Simple Example'); print for @array; print end_html;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
(jeffa) 3Re: print file in cgi with perl
by jeffa (Bishop) on Jul 23, 2003 at 16:22 UTC |