> Hi Dan,
>
> I don't think that is actually what he is asking for.Unless I
> misunderstand, he is referring to a pass-through program. Of
That's why I asked what he meant. The absolut simpleest would be:
#!/usr/bin/perl -w
use strict;
use CGI qw(header);
use File::Slurp;
pritn header();
p
Dan Muey wrote:
> > Greetings to all that is Perl
>
> Howdy
>
> >
> > Is it possible to specify using a cgi script to read and
> > output a Pure HTML file as output.. so that it can process
> > the form data..
>
> Do you mean can it output an html form to a browser, process it on submit and return
> Greetings to all that is Perl
Welcome back.
>
> Is it possible to specify using a cgi script to read and
> output a Pure HTML file as output.. so that it can process
> the form data..
Yes, you'll want to see CGI perl module. It can help you display html and process the
form data
and disp
> Greetings to all that is Perl
Howdy
>
> Is it possible to specify using a cgi script to read and
> output a Pure HTML file as output.. so that it can process
> the form data..
Do you mean can it output an html form to a browser, process it on submit and return
html to the browser?
Sure