9 Einträge, 1 Seite |
1
2
3
4
5
push @{ $neu_nav{$hashkey} }, qq~
<tr>
<td class="nav"><img src="$grafik/greysmallbullet.gif" width="5" height="5" border="0" alt="*"/>
& <a href="&{full_url}?action=$key">$titel</a></td>
</tr> ~;
1
2
3
4
5
6
7
8
my @html = ();
my $y = 0;
for( my $x=0; $x<=100; $x++ ){
$y = $x * 2;
push @html, qq~
<tr><td>$x</td><td>$y</td><tr>
~;
}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use Text::ScriptTemplate;
my $template = Text::ScriptTemplate->new;
# Oder Template mit ->load aus einer Datei holen:
$template->pack(<<'EOF');
<%
for my $x (0 .. $max) {
my $y = $x * 2;
%>
<tr><td><%= $x %></td><td><%= $y %></td><tr>
<% } %>
EOF
$template->setq(max => 10);
print $template->fill;
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use Text::ScriptTemplate;
my $template = Text::ScriptTemplate->new;
# Oder Template mit ->load aus einer Datei holen:
$template->pack(<<'EOF');
<tr><td><%= $x %></td><td><%= $y %></td><tr>
EOF
my $html = "";
for my $x (0 .. 10) {
my $y = $x * 2;
$template->setq(x => $x,
y => $y);
$html .= $template->fill;
}
print $html;
9 Einträge, 1 Seite |