Thread HTML ausgabe mit variable: bekomm das nicht hin (12 answers)
Opened by Gast at 2003-08-19 01:18

format_c
 2003-08-19 02:36
#23 #23
User since
2003-08-04
1706 Artikel
HausmeisterIn
[Homepage] [default_avatar]
machts euch doch nicht so schwer... ;)

Da hat sich schon mal ein den Kopf drüber zerbrochen.
perldoc HTML::Template

Im HTML-Template die Platzhalter wie folgt:
[html]
<TMPL_VAR name="CONTENT">
[/html]

so sieht das dann in perl aus:
Code (perl): (dl )
1
2
3
4
5
use HTML::Template;
my &#36tmpl = HTML::Template->new(filename =>'path/to/file.html');
&#36tmpl->param('CONTENT' => &#36inhalt);
print "Content-type: text/html\n\n";
print &#36tmpl->output();


Gruß Alex\n\n

<!--EDIT|format_c|1061246425-->

View full thread HTML ausgabe mit variable: bekomm das nicht hin