in reply to Re: Re: Append script output to complex block of html and script
in thread Append script output to complex block of html and script
As monkfish suggests a server side include may also do what you want.use strict; use warnings; open(FH,"<./test.html") || die "couldn't open file $!\n"; my @html=<FH>; close(FH); print @html; print " my script stuff<P>\n"; print '</body>';
You would put the following line inside your html document
<!--#exec cgi="/cgi-bin/yourscript.pl" -->
Some random personal SSI thoughts:
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Append script output to complex block of html and script
by cfreak (Chaplain) on Sep 07, 2001 at 18:11 UTC | |
|
Re: Re: Append script output to complex block of html and script
by jerrygarciuh (Curate) on Sep 07, 2001 at 14:32 UTC |