Leser: 2
|< 1 2 >| | 14 Einträge, 2 Seiten |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!C:/Perl/bin/perl.exe
use HTML::Template;
my $cgi = new CGI;
my $var = $cgi->param('param1');
my $template = HTML::Template->new(filename => '..\\htdocs\\dropui\\check.tmpl');
# fill in some parameters in the template;
$template->param(CHECK => $var);
# send the obligatory Content-Type
print "Content-Type: text/html\n\n";
# print the template
print $template->output;
use CGI;
|< 1 2 >| | 14 Einträge, 2 Seiten |