Leser: 1
5 Einträge, 1 Seite |
1
2
3
4
5
6
<select name="xy">
<option value="1">1
<option value="2">2
<option value="3" selected>3
<option value="5">4
</select>
1
2
3
4
5
<select name="<!-- TMPL_VAR NAME=SELECT -->">
<!-- TMPL_LOOP NAME=VALUES -->
<option value="<!-- TMPL_VAR NAME=VALUE -->" <!-- TMPL_IF NAME=SELECTED -->selected<!-- /TMPL_IF -->><!-- TMPL_VAR NAME=VALUE --></option>
<!-- /TMPL_LOOP -->
</select>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
my $selectname = "xy";
my $xy = 'selectedValue';
my @array;
[... Datenbankverbindung und Abfrage ...]
while(my ($value) = $sth->fetchrow_array()){
my $selected = $value eq $xy ? 1 : 0;
push(@array,{VALUE => $value, SELECTED => $selected});
}
$template->param({
SELECT => $selectname,
VALUES => \@array,
});
5 Einträge, 1 Seite |