5 Einträge, 1 Seite |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<TMPL_LOOP NAME=ober_liste>
<input <TMPL_VAR NAME=checked> type="radio" name="licenses" value="<TMPL_VAR NAME=typ>">
<TMPL_VAR NAME=article_descr>
<TMPL_VAR NAME=typ>
<TMPL_VAR NAME=price>
Untergruppe von typ
<TMPL_LOOP NAME=unter_liste>
<TMPL_VAR NAME=typ_s>
<TMPL_VAR NAME=price_s>
</TMPL_LOOP>
<BR>
</TMPL_LOOP>
Attempt to set nonexistent parameter 'unter_liste' - this parameter name doesn't match any declarations in the template file
$template->param(unter_liste=> \@loop_data_unterliste);
1
2
3
4
5
6
7
8
9
10
11
12
13
my @data = (
{
typ => 'typ',
article_descr => 'beschr',
# ...
unter_liste => [
{
typ_s => 'foo',
price_s => 12,
},
],
},
);
$template->param(unter_liste=> \@loop_data_unterliste);
Superfrank+2007-11-05 22:06:53--
PS: -w und strict hab ich immer an.
5 Einträge, 1 Seite |