Thread HTML:Template: Wert Template Variable in HTML link (13 answers)
Opened by vaan at 2007-01-14 02:55

vaan
 2007-01-15 20:59
#73181 #73181
User since
2006-11-21
17 Artikel
BenutzerIn
[default_avatar]
Hi Leute, vielen Dank erst mal für die schnellen Antworten, aber ich glaub ich bin zu dumm um das umzusetzten :(

Mein link im HTML sieht jetzt so aus:
<a href="\cgi-bin\check.cgi?param1=<TMPL_VAR NAME="REPORTFOLDER">">

dabei seh ich dann im Adressfenster meiner Browsers, dass der Variableninhalt an die URL gehängt wird.

Im CGI habe ich jetzt folgende Variante versucht:

Code: (dl )
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;



funzt nur leider nicht, ich weiss nicht an was es liegt!?

edit pq: code-tags hinzugefügt\n\n

<!--EDIT|pq|1168887853-->

View full thread HTML:Template: Wert Template Variable in HTML link