Leser: 1
|< 1 2 >| | 11 Einträge, 2 Seiten |
1 2 3 4 5 6 7 8
print qq~<html> <head> <link type="text/css" rel="stylesheet" href="/style/main14.css"> </head> <body> Test </body> </html>~;
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
#!/usr/bin/perl use strict; use warnings; use CGI; use HTML::Template::Compiled; my $cgi = CGI->new(); print $cgi->header(); my %params = $cgi->Vars(); my $template = HTML::Template::Compiled->new( filename => 'htc_bieber.tmpl' ); if( !$params{action} or $params{action} eq 'seite1' ){ seite1( $template ); } elsif( $params{action} eq 'seite2' ){ seite2( $template ); } else{ fehler( $template ); } print $template->output; #-- # Subroutines #-- sub seite1{ my ($tmpl) = @_; $tmpl->param( BODY => 'Testseite Nr. 1' ); } sub seite2{ my ($tmpl) = @_; $tmpl->param( BODY => 'Sie haben Seite Nr. 2 gewählt' ); } sub fehler{ my ($tmpl) = @_; $tmpl->param( BODY => 'Ätsch! Seite existiert nicht' ); }
<TMPL_VAR NAME=BODY>
<TMPL_INLCUDE NAME=BODY>
$tmpl->param( BODY => 'Testseite Nr. 1' );
$tmpl->param( BODY => 'seite.tmpl' );
|< 1 2 >| | 11 Einträge, 2 Seiten |