- or download this
<input name="mode" value="form1">
<input name="history" value="HISTORYBUF">
- or download this
use strict;
use CGI;
...
my $mode = $q->param("mode");
if ($mode eq "form1") { &validateform1; }
elsif ...
- or download this
use Storable;
...
$template =~ s/HISTORYBUF/$frozen/;
print $template; # do a "print $q->header" at top