4 Einträge, 1 Seite |
1 2 3 4 5 6 7 8 9
my @switch_ips = &get_switchip(); my @switch_ips_out; foreach my $switch ( @switch_ips ) { my %switch_ips = (IP => $switch->[0]); # problem! ich brauch 0 .. $#switch_ips ! So bekomme ich nur eine IP .. irgendwie push(@switch_ips_out, \%switch_ips); }
1
2
3
4
5
6
7
8
9
10
11
12
13
14
$ perl -wle'
use HTML::Template::Compiled;
my $htc = HTML::Template::Compiled->new(
plugin => [qw(::HTML_Tags)],
scalarref => \"<%html_option switch_ips %>",
);
$htc->param(
switch_ips => [undef, "127.0.0.1", "127.0.0.2", "127.0.0.3", "127.0.0.4"]
);
print $htc->output'
<option value="127.0.0.1" >127.0.0.1</option>
<option value="127.0.0.2" >127.0.0.2</option>
<option value="127.0.0.3" >127.0.0.3</option>
<option value="127.0.0.4" >127.0.0.4</option>
4 Einträge, 1 Seite |