in reply to Re: Perl and HTML
in thread Perl and HTML
You *have* to generate the HTML from the CGI script somehow. If there's no dynamic information in the HTML itself do
At the end of the script. For a more general solution, see HTML::Template (or one of the other template modules) and CGI::Application. Or see Web Applications for a possibly helpful thread.open HTML,"<","/path to html" or die "Can't open html: $!"; print "Content-type: text/html\n\n",<HTML>; close HTML
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
[OT] SSI and cookies
by bmann (Priest) on Jul 06, 2005 at 22:32 UTC | |
by Joost (Canon) on Jul 06, 2005 at 23:45 UTC | |
by bmann (Priest) on Jul 06, 2005 at 23:57 UTC |