thingsonline
ISP
I am trying to display the output of a perl script into a HTML template as ssi.
The script builds a boolsearch form and populates a drop-down menu for a flat file database script.
I can display the ouput of the database in ssi by using
use CGI;
my $query = CGI->new();
foreach ($query->param) {
my $value = $query->param($_);
$contents{$_} = $value;
}
print $query->header();
But does not seem to work on the boolsearch search script .....
Any suggestions
Many thanks
The script builds a boolsearch form and populates a drop-down menu for a flat file database script.
I can display the ouput of the database in ssi by using
use CGI;
my $query = CGI->new();
foreach ($query->param) {
my $value = $query->param($_);
$contents{$_} = $value;
}
print $query->header();
But does not seem to work on the boolsearch search script .....
Any suggestions
Many thanks