RE: Dump Html file as output from CGI script

2003-08-18 Thread Dan Muey
> 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

Re: Dump Html file as output from CGI script

2003-08-14 Thread R. Joseph Newton
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

RE: Dump Html file as output from CGI script

2003-07-10 Thread Dan Muey
> 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

RE: Dump Html file as output from CGI script

2003-07-02 Thread Dan Muey
> 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