1 2 3 4 5 6 7 8 9 10
use HTML::Template::Compiled; my $htct = <<'HTML'; <b>Blah ist <?= zweiunvierzig ?></b> HTML my $htc = HTML::Template::Compiled->new( tagstyle => [qw/+php/], scalarref => \$htct, ); $htc->param(zweiunvierzig => 42); print $htc->output;
1 2 3 4 5 6 7 8 9 10 11 12
use HTML::Template; my $template = <<'HTML'; <b>Blah ist <TMPL_VAR NAME="zweiunvierzig"></b> HTML # open the html template my $ht = HTML::Template->new( scalarref => \$template, ); $ht->param(zweiunvierzig => 42); print $ht->output;
2011-12-22T11:50:25 Brahal(Datenbankfrontends und Berechnungsprogramme für die Konstruktionsabteilung)
Aber die Wünsche der Anwender steigen,
und noch kann ich mich aber ggfs. für Perl entscheiden.